PHP ReflectionProperty::getDocComment 反射函数

  • 定义和用法

    ReflectionProperty::getDocComment - 获取属性文档注释
  • 版本支持

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

    ReflectionProperty::getDocComment( void )
    ReflectionProperty::getDocComment() 获取属性的文档注释。
  • 参数

    参数 必需的 描述
  • 返回值

    属性文档注释。
  • 示例

    class Str
    {
        /**
         * @var int  The length of the string
         */
        public $length = 5;
    }
    
    $prop = new ReflectionProperty('Str', 'length');
    
    var_dump($prop->getDocComment());
    
    尝试一下
  • 相关页面

    ReflectionProperty::getModifiers() - 获取属性修饰符
    ReflectionProperty::getName() - 获取属性名称
    ReflectionProperty::getValue() - 获得价值