今天要说的是method_exists这个函数的用法
如果你研究过框架的运行原理,一定对这个函数不陌生.
他的功能就像他的名子描述的一样,用来检查一个类中是否存在某个方法.
用法:
method_exists(对象名,方法名)
存在返回true,不存在返回false
例:
class say{
function hello(){
echo "hello world";
}
}
$a = new say;
if (method_exists($a,"hello")){
echo "方法hello存在";
}
else{
echo "方法hello不存在";
}