(PHP 4, PHP 5)
method_exists — 检查类的方法是否存在
$object
, string $method_name
)
如果 method_name
所指的方法在 object
所指的对象类中已定义,则返回 TRUE
,否则返回 FALSE
。
Example #1 method_exists() 例子
<?php
$directory = new Directory('.');
var_dump(method_exists($directory,'read'));
?>
以上例程会输出:
bool(true)
object
An object instance or a class name
method_name
The method name
Returns TRUE
if the method given by method_name
has been defined for the given object
, FALSE
otherwise.
Note:
如果此类不是已知类, 使用此函数会使用任何已注册的 autoloader。
Example #2 method_exists() example
<?php
$directory = new Directory('.');
var_dump(method_exists($directory,'read'));
?>
以上例程会输出:
bool(true)
Example #3 Static method_exists() example
<?php
var_dump(method_exists('Directory','read'));
?>
以上例程会输出:
bool(true)