function_exists 如果给定的函数已经被定义就返回 true
发表日期:2021-07-01 08:57:16 | 来源: | | 浏览(975) 分类:函数处理 函数
function_exists
(PHP 4, PHP 5, PHP 7, PHP 8)
function_exists — 如果给定的函数已经被定义就返回 true
说明
function_exists(string
$function_name
): bool
在已经定义的函数列表(包括系统自带的函数和用户自定义的函数)中查找 function_name
。
参数
-
function_name
-
函数名,必须为一个字符串。
返回值
如果 function_name
存在且的确是一个函数就返回 true
,反之则返回 false
。
注意:
对于语法结构的判断,例如 include_once 和 echo 将会返回
false
。
范例
示例 #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 就是一个现成的例子)
参见
- method_exists() - 检查类的方法是否存在
- is_callable() - 检测参数是否为合法的可调用结构
- get_defined_functions() - 返回所有已定义函数的数组
- class_exists() - 检查类是否已定义
- extension_loaded() - 检查一个扩展是否已经加载
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- call_user_func_array 调用回调函数,并把一个数组参数作为回调函数的参数(0)
- call_user_func 把第一个参数作为回调函数调用(0)
- create_function Create an anonymous (lambda-style) function(0)
- forward_static_call_array Call a static method and pass the arguments as array(0)
- forward_static_call Call a static method(0)
- func_get_arg 返回参数列表的某一项(0)
- func_get_args 返回一个包含函数参数列表的数组(0)
- func_num_args Returns the number of arguments passed to the function(0)
- function_exists 如果给定的函数已经被定义就返回 true(0)
- get_defined_functions 返回所有已定义函数的数组(0)
- register_shutdown_function 注册一个会在php中止时执行的函数(0)
- register_tick_function Register a function for execution on each tick(0)
- unregister_tick_function De-register a function for execution on each tick(0)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)