阅读量:0
在PHP中,可以使用function_exists()
函数来检查函数或方法是否已定义。该函数接受一个字符串作为参数,该字符串是要检查的函数或方法的名称。如果函数或方法已定义,则返回true
,否则返回false
。
例如:
if (function_exists('my_function')) { echo 'my_function 已定义'; } else { echo 'my_function 未定义'; }
可以使用类似的方法检查类中的方法是否已定义:
if (method_exists('MyClass', 'myMethod')) { echo 'MyClass 中的 myMethod 方法已定义'; } else { echo 'MyClass 中的 myMethod 方法未定义'; }