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中文網其他相關文章!