使用 PHPDocumentor 解析 phpdoc 注释

发布于 2024-09-12 22:45:49 字数 96 浏览 5 评论 0原文

我希望将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

圈圈圆圆圈圈 2024-09-19 22:45:49

您可以使用纯 php 反射来获取 phpdoc 内容。我们用它来放置输入验证数据。稍后我会查找示例代码。

只需使用这个:

$data = new ReflectionMethod($class, $method);
echo $data->getDocComment();

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:

$data = new ReflectionMethod($class, $method);
echo $data->getDocComment();
回眸一笑 2024-09-19 22:45:49

另一种选择是使用 DocBloxparse 选项来生成您可以使用的 XML 结构。然后可以用您自己的代码进行解释。

使用 PEAR 安装 DocBlox 后,您可以使用以下命令生成结构。

docblox parse -d [SOURCE_FOLDER] -t [TARGET_LOCATION]

或者

docblox parse -f [SOURCE_FILE] -t [TARGET_LOCATION] 

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.

docblox parse -d [SOURCE_FOLDER] -t [TARGET_LOCATION]

or

docblox parse -f [SOURCE_FILE] -t [TARGET_LOCATION] 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文