(PHP 5, PHP 7)
ReflectionMethod::getDeclaringClass — 获取反射函数调用参数的类表达
获取反射函数参数的一个表达类。 译者注:应该是将这个方法作为一个类返回,他的参数将成为类属性, 执行内容变成什么不知道,下面的范例能够说明一些问题
此函数没有参数。
返回 ReflectionClass 对象,其中包含这个方法。
Example #1 ReflectionMethod::getDeclaringClass() example
<?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" }