php怎样检查函数是否存在

  • 来源:网络
  • 更新日期:2020-08-13

摘要:php检查函数是否存在的方法:可以利用function_exists()函数来进行判断。如果函数存在就返回true,反之则返回false。具体使用方法如:【function_exists('curl_init')】

php检查函数是否存在的方法:可以利用function_exists()函数来进行判断。如果函数存在就返回true,反之则返回false。具体使用方法如:【function_exists('curl_init')】。

function_exists()函数判断给定的函数是否已经被定义,如果 function_name 存在且的确是一个函数就返回 TRUE ,反之则返回 FALSE 。

(推荐教程:php图文教程)

语法:

function_exists ( string $function_name ) : bool

注意:function_name必须为一个字符串。

(视频教程推荐:php视频教程)

代码实现:

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