PHP判断函数,类,方法,属性是否存在

  • php 判断类里面的某个属性是否已经定义
    bool property_exists ( mixed $class , string $property )检查类的属性是否存在
$directory=new Directory;
if(!property_exists($directory,'li')){
    echo '未定义li属性!';
}
  • php判断系统函数或自己写的函数是否存在
    bool function_exists ( string $function_name ) 判断函数是否已经定义
if(function_exists('curl_init')){
    curl_init();
}else{
    echo 'not function curl_init';
}
  • 2.php判断类是否存在
    bool class_exists ( string $class_name [, bool $autoload = true ] ) 检查一个类是否已经定义,一定以返回true,否则返回false
if(class_exists('MySQL')){
    $myclass=new MySQL();
}
  • php判断类里面的某个方法是否已经定义
    bool method_exists ( mixed $object , string $method_name ) 检查类的方法是否存在
$directory=new Directory;
if(!method_exists($directory,'read')){
    echo '未定义read方法!';
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章