PHP ReflectionClass::getDocComment 反射函数
-
定义和用法
ReflectionClass::getDocComment - 获取文档注释 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionClass::getDocComment( void )
ReflectionClass::getDocComment() 从一个类中获取文档注释。 -
参数
参数 必需的 描述 无 -
返回值
如果存在则返回文档注释,否则返回 FALSE。 -
示例
尝试一下/** * A test class * * @param foo bar * @return baz */ class TestClass { } $rc = new ReflectionClass('TestClass'); var_dump($rc->getDocComment());
-
相关页面
ReflectionClass::getName() - 获取类名