method_exists 检查类的方法是否存在


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()


«  metaphone
» mhash
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3