用法
method_exists ( $object, $method_name );
定义和用法
它检查给定对象中是否存在类方法。
参数
Sr.No | 参数及说明 |
---|---|
1 |
object(Required) 被测对象 |
2 |
mthod_name(Required) 方法名称。 |
返回值
如果已为给定对象定义了 method_name 给出的方法,则返回 TRUE,否则返回 FALSE。
示例
下面是这个函数的用法~
<?php
$directory = new Directory('.');
var_dump(method_exists($directory,'anything'));
?>
它将产生以下结果 -
bool(false)
相关用法
- PHP method_exists()用法及代码示例
- 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 - Function method_exists()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。