ReflectionClass::getDocComment

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getDocCommentGets doc comments

Description

publicReflectionClass::getDocComment(): string|false

Gets doc comments from a class. Doc comments start with
class TestClass { }

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

The above example will output:

string(61) ""

See Also

To Top