ReflectionProperty
PHP Manual

ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7)

ReflectionProperty::getDocCommentGets the property doc comment

Descrição

public string ReflectionProperty::getDocComment ( void )

Gets the doc comment for a property.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The property doc comment.

Exemplos

Exemplo #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());

?>

O exemplo acima irá imprimir algo similar à:

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

Veja Também


ReflectionProperty
PHP Manual