ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7)
Gets the property doc comment
public string ReflectionProperty::getDocComment ( void )

Gets the doc comment for a property.

Returns:

The property doc comment.

Examples:
ReflectionProperty::getDocComment() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class Str
{
    /**
     * @var int  The length of the string
     */
    public $length = 5;
}
 
$prop new ReflectionProperty('Str''length');
 
var_dump($prop->getDocComment());
 
?>

The above example will output something similar to:

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

ReflectionProperty::getModifiers() -

ReflectionProperty::getName() -

ReflectionProperty::getValue() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.