ReflectionClass::getDocComment

(PHP 5, PHP 7)

ReflectionClass::getDocCommentGets doc comments

Beschreibung

public ReflectionClass::getDocComment ( void ) : string

Gets doc comments from a class. Doc comments start with /**. If there are multiple doc comments above the class definition, the one closest to the class will be taken.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The doc comment if it exists, otherwise FALSE

Beispiele

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
*/"

Siehe auch