Php/docs/reflectionmethod.getdeclaringclass
来自菜鸟教程
ReflectionMethod::getDeclaringClass
(PHP 5, PHP 7)
ReflectionMethod::getDeclaringClass — 获取被反射的方法所在类的反射实例
参数
此函数没有参数。
范例
Example #1 ReflectionMethod::getDeclaringClass() example
<?phpclass HelloWorld { protected function sayHelloTo($name) { return 'Hello ' . $name; }}$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');var_dump($reflectionMethod->getDeclaringClass());?>
以上例程会输出:
object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" }