method_exists()
是 PHP 中的一个内置函数,用于检查对象是否具有指定的方法。它接受两个参数:
- 对象(对象):要检查的对象实例。
- 方法名(字符串):要检查的方法名称。
如果对象具有指定的方法,则 method_exists()
返回 true
,否则返回 false
。
以下是 method_exists()
的用法示例:
class MyClass { public function myMethod() { echo "This is my method."; } } $obj = new MyClass(); if (method_exists($obj, 'myMethod')) { $obj->myMethod(); // 输出 "This is my method." } else { echo "The method 'myMethod' does not exist."; }
在这个例子中,我们定义了一个名为 MyClass
的类,其中包含一个名为 myMethod
的方法。然后,我们创建了一个 MyClass
的实例 $obj
,并使用 method_exists()
检查该实例是否具有 myMethod
方法。由于该方法存在,因此 method_exists()
返回 true
,我们调用该方法并输出 “This is my method.”。