(PHP 5 >= 5.1.0, PHP 7)
ReflectionProperty::getDocComment — プロパティのドキュメントコメントを取得する
プロパティのドキュメントコメントを取得します。
この関数にはパラメータはありません。
プロパティのドキュメントコメントを返します。
例1 ReflectionProperty::getDocComment() の例
<?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 */"