📜  PHP | ReflectionProperty getDocComment()函数

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

PHP | ReflectionProperty getDocComment()函数

ReflectionProperty::getDocComment()函数是PHP中的一个内置函数,用于返回指定属性的文档注释。

句法:

string ReflectionProperty::getDocComment ( void )

参数:此函数不接受任何参数。

返回值:该函数返回指定属性的文档注释。

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

getDocComment();
$D = $B->getDocComment();
  
// Getting the doc comment of the specified property
var_dump($C);
var_dump($D);
?>

输出:

string(63) "/**
     * @Below is the Size of GeeksforGeeks String
     */"
string(53) "/**
     * @Below is the Size of GFG String
     */"

方案二:

getDocComment();
$E = $B->getDocComment();
$F = $C->getDocComment();
  
// Getting the doc comments of the specified properties
var_dump($D);
var_dump($E);
var_dump($F);
?>

输出:

string(52) "/**
     * @Below is the Size of HR String
     */"
string(56) "/**
     * @Below is the Size of Coding String
     */"
string(59) "/**
     * @Below is the Size of Marketing String
     */"

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