(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getDeclaringClass — 获取反射方法的声明类
此函数没有参数。
包含反射方法的类的 ReflectionClass 对象。
示例 #1 ReflectionMethod::getDeclaringClass() 示例
<?php
class 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" }