使用 PHPDocumentor 解析 phpdoc 注释
我希望将 PHPDocumentor 输出转换为我可以在 PHP 中遍历的格式(理想情况下,我想要一个包含所有函数及其注释的数组)。
有什么办法可以做到这一点吗?
I'm looking to convert PHPDocumentor output to a format I can traverse through in PHP (Ideally, I want an array of all the functions with their comments).
Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用纯 php 反射来获取 phpdoc 内容。我们用它来放置输入验证数据。稍后我会查找示例代码。
只需使用这个:
You can use pure php reflection to get the phpdoc content. We used that to put there input validation data. I'll look up example code later.
Just use this:
Zend_Reflection 可能有一些用处: http://framework.zend.com /manual/en/zend.reflection.reference.html
Zend_Reflection might be of some use: http://framework.zend.com/manual/en/zend.reflection.reference.html
另一种选择是使用 DocBlox 的
parse
选项来生成您可以使用的 XML 结构。然后可以用您自己的代码进行解释。使用 PEAR 安装 DocBlox 后,您可以使用以下命令生成结构。
或者
Another option would be to use the
parse
option of DocBlox to generate a XML structure which you can then interpret with your own code.After you have installed DocBlox using PEAR you can use the following command to generate a structure.
or