Classes/Object 函数
PHP Manual

method_exists

(PHP 4, PHP 5)

method_exists检查类的方法是否存在

说明

bool method_exists ( object $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)

参见 function_exists()is_callable()

参数

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)

参见


Classes/Object 函数
PHP Manual