PHP的function_exists函數(shù)怎么使用

小億
99
2023-07-17 12:22:57

function_exists函數(shù)用于檢查指定的函數(shù)是否存在,其使用方法如下:

  1. function_exists函數(shù)接受一個(gè)參數(shù),即要檢查的函數(shù)名。

  2. 調(diào)用function_exists函數(shù)后,會(huì)返回一個(gè)布爾值,表示該函數(shù)是否存在。

以下是一個(gè)示例代碼:

if (function_exists('my_function')) {
echo "my_function存在";
} else {
echo "my_function不存在";
}

在上述示例中,function_exists函數(shù)用于檢查名為my_function的函數(shù)是否存在。如果存在,則輸出"my_function存在";如果不存在,則輸出"my_function不存在"。

0