1. 程式人生 > >PHP判斷{函式/類/方法}是否存在

PHP判斷{函式/類/方法}是否存在

(1)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();
}

(3)php判斷類裡面的某個方法是否已經定義

bool method_exists ( mixed $object , string $method_name ) 檢查類的方法是否存在,例如:

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