php檢查函數是否存在的方法:可以利用function_exists()函數來進行判斷。如果函數存在就返回true,反之則返回false。具體使用方法如:【function_exists('curl_init')】。
function_exists()函數判斷給定的函數是否已經被定義,如果 function_name 存在且的確是一個函數就返回 TRUE ,反之則返回 FALSE 。
(推薦教學:)
語法:
function_exists ( string $function_name ) : bool
注意:function_name必須爲一個字串。
(視訊教學推薦:)
程式碼實現:
if(function_exists('curl_init')){ curl_init(); }else{ echo 'not function curl_init'; }
以上就是php怎樣檢查函數是否存在的詳細內容,更多請關注php中文網其它相關文章!