ReflectionProperty
PHP Manual

ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7)

ReflectionProperty::getDocCommentGets the property doc comment

说明

public string ReflectionProperty::getDocComment ( void )

Gets the doc comment for a property.

参数

此函数没有参数。

返回值

The property doc comment.

范例

Example #1 ReflectionProperty::getDocComment() example

<?php
class Str
{
    
/**
     * @var int  The length of the string
     */
    
public $length 5;
}

$prop = new ReflectionProperty('Str''length');

var_dump($prop->getDocComment());

?>

以上例程的输出类似于:

string(53) "/**
     * @var int  The length of the string
     */"

参见


ReflectionProperty
PHP Manual