PHP |反射类 getMethod()函数
ReflectionClass::getMethod()函数是PHP中的一个内置函数,用于返回指定类方法的 ReflectionMethod。
句法:
ReflectionMethod ReflectionClass::getMethod ( string $name )
参数:此函数接受一个参数$name ,它是方法名称。
返回值:此函数返回指定类方法的 ReflectionMethod。
下面的程序说明了PHP中的 ReflectionClass::getMethod()函数:
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