PHP ReflectionMethod::getDeclaringClass 反射函数
-
定义和用法
ReflectionMethod::getDeclaringClass - 获取反射函数调用参数的类表达 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionMethod::getDeclaringClass( void )
ReflectionMethod::getDeclaringClass() 获取反射函数参数的一个表达类。 译者注:应该是将这个方法作为一个类返回,他的参数将成为类属性, 执行内容变成什么不知道,下面的范例能够说明一些问题 -
参数
参数 必需的 描述 无 -
返回值
返回 ReflectionClass 对象,其中包含这个方法。 -
示例
尝试一下class HelloWorld { protected function sayHelloTo($name) { return 'Hello ' . $name; } } $reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo'); var_dump($reflectionMethod->getDeclaringClass());
-
相关页面
ReflectionMethod::isAbstract() - 判断方法是否是抽象方法