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 就是一个现成的例子)。