ReflectionClass::getDocComment

(PHP 5, PHP 7)

ReflectionClass::getDocComment��ȡ�ĵ�ע��

˵��

public ReflectionClass::getDocComment ( void ) : string

��һ�����л�ȡ�ĵ�ע�͡�

Warning

��������δ��д�ĵ������в����б�

����

�˺���û�в�����

����ֵ

��������򷵻��ĵ�ע�ͣ����򷵻� FALSE��

����

Example #1 ReflectionClass::getDocComment() ����

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

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

�������̻������

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

�μ�