我希望将PHPDocumentor输出转换为我可以在PHP中遍历的格式(理想情况下,我想要一个包含所有函数的数组及其注释)。
有没有办法做到这一点?
答案 0 :(得分:4)
您可以使用纯php反射来获取phpdoc内容。我们用它来输入验证数据。我稍后会查看示例代码。
请使用:
$data = new ReflectionMethod($class, $method);
echo $data->getDocComment();
答案 1 :(得分:2)
Zend_Reflection可能有用:http://framework.zend.com/manual/en/zend.reflection.reference.html
答案 2 :(得分:0)