PHP ReflectionClass::getMethod 反射函数
-
定义和用法
ReflectionClass::getMethod - 获取一个类方法的 ReflectionMethod。 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionClass::getMethod( string $name )
ReflectionClass::getMethod() 获取一个类方法的 ReflectionMethod。 -
参数
参数 必需的 描述 name 是 要反射的方法名称。 -
返回值
一个 ReflectionMethod 对象。如果方法不存在则会抛出 ReflectionException 异常。
-
示例
尝试一下$class = new ReflectionClass('ReflectionClass'); $method = $class->getMethod('getMethod'); var_dump($method);
-
相关页面
ReflectionClass::getMethods() - 获取方法的数组