ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0)

ReflectionProperty::getDocCommentGets doc comment

Description

public string ReflectionProperty::getDocComment ( void )

Gets the doc comment.

Warning

This function is currently not documented; only its argument list is available.

Parameters

This function has no parameters.

Return Values

The doc comment.

See Also

Коментарии

Автор:
Unfortunately, inherited doc comments are not supported.

<?php

class {
   
/**
     * @var string
     */
   
public string $prop 'A';
}

class 
extends {
    public 
string $prop 'B';
}

$prop = new ReflectionProperty('B''prop');
var_dump($prop->getDocComment());

?>

results in FALSE
2022-05-23 05:51:08
http://php5.kiev.ua/manual/ru/reflectionproperty.getdoccomment.html

    Поддержать сайт на родительском проекте КГБ