(PHP 5 >= 5.1.0, PHP 7)
ReflectionClass::getDocComment — Gets doc comments
Gets doc comments from a class.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Diese Funktion hat keine Parameter.
The doc comment if it exists, otherwise FALSE
Beispiel #1 ReflectionClass::getDocComment() example
<?php
/**
* A test class
*
* @param foo bar
* @return baz
*/
class TestClass { }
$rc = new ReflectionClass('TestClass');
var_dump($rc->getDocComment())
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(55) "/** * A test class * * @param foo bar * @return baz */"