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


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


ReflectionClass::getMethod()函数是PHP中的内置函数,用于为指定的类方法返回ReflectionMethod。

用法:

ReflectionMethod ReflectionClass::getMethod ( string $name )

参数:此函数接受参数$name,它是方法名。


返回值:此函数为指定的类方法返回ReflectionMethod。

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

<?php 
  
// Using ReflectionClass over the inbuilt class 
// 'ReflectionClass' 
$class = new ReflectionClass('ReflectionClass'); 
  
// Calling the getMethod over the method named 
// as 'getMethod' 
$method = $class->getMethod('getMethod'); 
  
// Getting the ReflectionMethod for the specified 
// inbuilt class method. 
var_dump($method); 
?>

输出:

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(9) "getMethod"
  ["class"]=>
  string(15) "ReflectionClass"
}

参考: https://www.php.net/manual/en/reflectionclass.getmethod.php



相关用法


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