function_exists函數用于檢查指定的函數是否存在,其使用方法如下:
function_exists函數接受一個參數,即要檢查的函數名。
調用function_exists函數后,會返回一個布爾值,表示該函數是否存在。
以下是一個示例代碼:
if (function_exists('my_function')) {
echo "my_function存在";
} else {
echo "my_function不存在";
}
在上述示例中,function_exists函數用于檢查名為my_function的函數是否存在。如果存在,則輸出"my_function存在";如果不存在,則輸出"my_function不存在"。