📅  最后修改于: 2023-12-03 14:45:18.521000             🧑  作者: Mango
该函数是PHP反射(Reflection)类中的一个成员函数,用于获取指定类的注释文档。
public ReflectionClass::getDocComment(): ?string
该函数不接受任何参数。
返回该类的注释文档,如果该类没有注释则返回 null
。
class MyClass
{
/**
* This is a doc comment for MyClass.
*/
public function myMethod()
{
// some code here
}
}
$class = new ReflectionClass('MyClass');
$docComment = $class->getDocComment();
echo $docComment; // 输出:"/**\n * This is a doc comment for MyClass.\n */"
以上示例演示了如何使用 ReflectionClass
和 getDocComment()
函数获取类的注释文档。
ReflectionMethod
类中的 getDocComment()
函数。