PHP ReflectionProperty::getDeclaringClass 反射函数

  • 定义和用法

    ReflectionProperty::getDeclaringClass - 获取定义的类
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    ReflectionProperty::getDeclaringClass( void )
    ReflectionProperty::getDeclaringClass() 获取定义的类
  • 参数

    参数 必需的 描述
  • 返回值

    ReflectionClass 对象。
  • 示例

    class X {
       
    }
    
    $x = new X();
    $x->foo = 'bar';
    $reflection = new ReflectionObject($x);
    echo $reflection->getProperty('foo')->getDeclaringClass()->getName(); // X
    
    尝试一下
  • 相关页面

    ReflectionProperty::getName() - 获取属性名称。