ReflectionClass::getDocComment

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getDocCommentドキュメントコメントを取得する

説明

publicReflectionClass::getDocComment(): string|false

クラスのドキュメントコメントを取得します。 ドキュメントコメントは、
class TestClass { }

$rc = new ReflectionClass('TestClass');
var_dump($rc->getDocComment());
?>

上の例の出力は以下となります。

string(61) ""

参考

To Top