ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7)

ReflectionProperty::getDocCommentGets the property doc comment

Opis

public ReflectionProperty::getDocComment ( void ) : string

Gets the doc comment for a property.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The property doc comment.

Przykłady

Przykład #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());

?>

Powyższy przykład wyświetli coś podobnego do:

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

Przykład #2 Multiple property declarations

If multiple property declarations are preceeded by a single doc comment, the doc comment refers to the first property only.

<?php
class Foo
{
    
/** @var string */
    
public $a$b;
}
$class = new \ReflectionClass('Foo');
foreach (
$class->getProperties() as $property) {
    echo 
$property->getName() . ': ' var_export($property->getDocComment(), true) . PHP_EOL;
}
?>

Powyższy przykład wyświetli:

a: '/** @var string */'
b: false

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top