(PHP 4, PHP 5, PHP 7, PHP 8)
function_exists — 如果给定的函数已经被定义就返回 true
$function
): bool
在已经定义的函数列表(包括系统自带的函数和用户自定义的函数)中查找 function
。
function
函数名,必须为一个字符串。
示例 #1 function_exists() 的例子
<?php
if (function_exists('imap_open')) {
echo "IMAP functions are available.<br />\n";
} else {
echo "IMAP functions are not available.<br />\n";
}
?>
注意:
即使函数本身由于配置或者编译选项而无法使用,该函数名也可能存在(image 就是一个现成的例子)。