ReflectionClass
PHP Manual

ReflectionClass::getDocComment

(PHP 5 >= 5.1.0)

ReflectionClass::getDocCommentGets doc comments

Descrizione

public string ReflectionClass::getDocComment ( void )

Gets doc comments from a class.

Avviso

Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The doc comment if it exists, otherwise FALSE

Esempi

Example #1 ReflectionClass::getDocComment() example

<?php
/** 
* A test class
*
* @param  foo bar
* @return baz
*/
class TestClass { }

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

Il precedente esempio visualizzerà:

string(55) "/** 
* A test class
*
* @param  foo bar
* @return baz
*/"

Vedere anche:


ReflectionClass
PHP Manual