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'; }
以上是php怎样检查函数是否存在的详细内容。更多信息请关注PHP中文网其他相关文章!