在 PHP 中,使用 function_exists() 函數檢查函數是否存在:接收函數名稱參數(字串)。傳回布林值:true 表示函數存在,false 表示不存在。
如何檢查 PHP 函數是否存在?
在 PHP 中,您可以使用 function_exists()
函數來檢查函數是否存在。此函數接收一個參數,即函數名稱(字串形式),並傳回一個布林值:true
表示函數存在,false
表示不存在。
語法:
bool function_exists ( string $function_name )
參數:
實戰案例:
<?php // 检查是否存在 my_function 函数 if (function_exists('my_function')) { echo 'my_function 存在'; } else { echo 'my_function 不存在'; }
輸出:##
my_function 不存在因為
my_function 函數尚未定義,所以輸出將為"my_function 不存在"。
注意:
函數自動載入函數,則在檢查函數是否存在之前需要呼叫此函數。
函數來檢查函數是否存在並可呼叫。
以上是如何檢查 PHP 函數是否存在?的詳細內容。更多資訊請關注PHP中文網其他相關文章!