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
相关用法
- PHP ReflectionClass getTraits()用法及代码示例
- PHP ReflectionClass getReflectionConstant()用法及代码示例
- PHP ReflectionClass isFinal()用法及代码示例
- PHP ReflectionClass getTraitNames()用法及代码示例
- PHP ReflectionClass getExtensionName()用法及代码示例
- PHP ReflectionClass getInterfaces()用法及代码示例
- PHP ReflectionClass isInstance()用法及代码示例
- PHP ReflectionClass getTraitAliases()用法及代码示例
- PHP ReflectionClass hasMethod()用法及代码示例
- PHP ReflectionClass getProperties()用法及代码示例
- PHP ReflectionClass getProperty()用法及代码示例
- PHP ReflectionClass getStaticProperties()用法及代码示例
- PHP ReflectionClass getDefaultProperties()用法及代码示例
- PHP ReflectionClass __toString()用法及代码示例
- PHP ReflectionClass getFileName()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionClass getMethod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。