ReflectionClass::getDocComment

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getDocCommentGets doc comments

Beschreibung

publicReflectionClass::getDocComment(): string|false

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

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

string(61) ""

Siehe auch

To Top