📜  PHP | ReflectionClass getDocComment()函数

📅  最后修改于: 2022-05-13 01:56:52.444000             🧑  作者: Mango

PHP | ReflectionClass getDocComment()函数

ReflectionClass::getDocComment()函数是PHP中的一个内置函数,用于返回指定的文档注释(如果存在),否则返回 false。

句法:

string ReflectionClass::getDocComment( void )

参数:此函数不接受任何参数。
返回值:该函数如果存在则返回指定的文档注释,否则返回false。

下面的程序说明了PHP中的 ReflectionClass::getDocComment()函数:
方案一:

php
getDocComment();
  
// Getting specified doc comments
var_dump($A);
?>


php
getDocComment();
  
// Getting specified doc comments
var_dump($A);
?>


输出:
string(66) "/** 
* Below program is
* about getting the
* doc comments.
*/"

方案二:

PHP

getDocComment();
  
// Getting specified doc comments
var_dump($A);
?>
输出:
bool(false)

参考: https://www. PHP.net/manual/en/reflectionclass.getdoccomment。 PHP