(PHP 5 >= 5.1.0)
ReflectionClass::getDocComment — Gets doc comments
Gets doc comments from a class.
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
この関数にはパラメータはありません。
The doc comment if it exists, otherwise FALSE
例1 ReflectionClass::getDocComment example
<?php
/**
* A test class
*
* @param foo bar
* @return baz
*/
class TestClass { }
$rc = new ReflectionClass('TestClass');
var_dump($rc->getDocComment())
?>
上の例の出力は以下となります。
string(55) "/** * A test class * * @param foo bar * @return baz */"