(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getDeclaringClass — 獲取被反射的方法所在類的反射實(shí)例
此函數(shù)沒有參數(shù)。
返回一個(gè)類的 ReflectionClass 反射對(duì)象,被反射的方法是這個(gè)類的一部分。
示例 #1 ReflectionMethod::getDeclaringClass() example
<?php
class HelloWorld {
protected function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
var_dump($reflectionMethod->getDeclaringClass());
?>
以上例程會(huì)輸出:
object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" }