method_exists() 函数检查类方法是否存在。
用法
method_exists(object, name_of_method)
参数
object − 对象实例或类名
name_of_method - 方法名称
返回
如果已为给定对象定义了 method_name 给出的方法,则 method_exists() 函数返回 TRUE,否则返回 FALSE。
示例
以下是一个例子 -
<?php
$directory = new Directory('.'); var_dump(method_exists($directory,'anything'));
?>
输出
bool(false)
示例
<?php
var_dump(method_exists('Directory','read'));
?>
输出
bool(true)
相关用法
- PHP metaphone()用法及代码示例
- PHP mhash_get_hash_name()用法及代码示例
- PHP mysqli_get_server_info()用法及代码示例
- PHP money_format()用法及代码示例
- PHP mysqli_data_seek()用法及代码示例
- PHP mysqli_insert_id()用法及代码示例
- PHP mysqli_fetch_assoc()用法及代码示例
- PHP mkdir()用法及代码示例
- PHP mysqli_connect_error()用法及代码示例
- PHP mhash_keygen_s2k()用法及代码示例
- PHP microtime()用法及代码示例
- PHP mysqli_fetch_all()用法及代码示例
- PHP mt_rand( )用法及代码示例
- PHP mysqli_next_result()用法及代码示例
- PHP mysqli_stmt_affected_rows()用法及代码示例
- PHP mime_content_type()用法及代码示例
- PHP mysqli_begin_transaction()用法及代码示例
- PHP mysqli_real_escape_string()用法及代码示例
- PHP mysqli_fetch_lengths()用法及代码示例
注:本文由纯净天空筛选整理自Chandu yadav大神的英文原创作品 method_exists() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。