当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionClass hasMethod()用法及代码示例


ReflectionClass::hasMethod()函数是PHP中的内置函数,用于检查指定的方法是否存在。

用法:

bool ReflectionClass::hasMethod( string $name )

参数:该函数接受单个参数$name,该参数保存正在检查的方法的名称。


返回值:如果存在指定的方法,则此函数返回TRUE,否则返回FALSE。

以下示例程序旨在说明PHP中的ReflectionClass::hasMethod()函数:

程序1:

<?php 
  
// Initialising a user-defined Class Departments 
class Departments { 
    public function CSE() { } 
    final protected function ECE() { } 
    private static function EE() { } 
    static function IT() { } 
    private function Mechnical() { } 
} 
  
// Using ReflectionClass() over the 
// user-defined class Departments 
$class = new ReflectionClass('Departments'); 
  
// Calling the hasMethod() function 
$methods = $class->hasMethod('CSE'); 
  
// Getting the value true or false 
var_dump($methods); 
?>
输出:
bool(true)

程序2:

<?php 
   
// Initialising a user-defined Class Company 
class Company { 
    public function GeeksforGeeks() { } 
    static function gfg() { } 
} 
   
// Using ReflectionClass() over the 
// user-defined class Company 
$class = new ReflectionClass('Company'); 
   
// Calling the hasMethod() function 
$methods = $class->hasMethod('TCS'); 
   
// Getting the value true or false 
var_dump($methods); 
?>
输出:
bool(false)

参考: https://php.net/manual/en/reflectionclass.hasmethod.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionClass hasMethod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。