ReflectionClass::getDocComment

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getDocComment获取文档注释

说明

public ReflectionClass::getDocComment(): string|false

从类中获取文档注释。文档注释以 /** 开头,后跟空格。 如果类定义上方有多个文档注释,则采用最接近该类的注释。

参数

此函数没有参数。

返回值

如果存在则返回文档注释,否则返回 false

范例

示例 #1 ReflectionClass::getDocComment() 例子

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

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

以上例程会输出:

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

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top