php 判断 函数 类 方法是否存在

判断函数

if(function_exists('curl_init')){
    curl_init();
}else{
    echo 'not function curl_init';
}

判断类

if(class_exists('MySQL')){
    $myclass=new MySQL();
}

判断方法

$directory=new Directory;
if(!method_exists($directory,'read')){
    echo '未定义read方法!';
}

你可能感兴趣的:(php 判断 函数 类 方法是否存在)