我编写了一个函数,它返回给定 DocComment 标签的值。
完整示例
<?php
header('Content-Type: text/plain');
class Example
{
public function myMethod()
{
echo 'Hello World!';
}
}
function getDocComment($str, $tag = '')
{
if (empty($tag))
{
return $str;
}
$matches = array();
preg_match("/".$tag.":(.*)(\\r\\n|\\r|\\n)/U", $str, $matches);
if (isset($matches[1]))
{
return trim($matches[1]);
}
return '';
}
$method = new ReflectionMethod('Example', 'myMethod');
echo getDocComment($method->getDocComment(), '@DocTag');
?>
也许您可以将此功能添加到反射类的 getDocComment 方法中。