如何使用 Doxygen 编写注释头 PHP 文件?
我试图在每个 PHP 文件中写入注释,然后注释将由 Doxygen 生成,有谁知道如何编写注释头 PHP 文件?
i trying to write a comment in each PHP file, then the comment will generated by Doxygen, does anyone know how to write a comment header PHP file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用您最喜欢的 $searchengine 来查找“php doxygen 教程”。我发现 http://www.doxygen.nl/manual/docblocks.html#specialblock< /a> 有帮助。
对于 PHP,您可能还需要查看 phpDocumentor 或 phpDocumentor 。 docblox-project.org/" rel="nofollow noreferrer">docblox。
一般来说,PHP 文件中的 docblock 标头如下所示:
我建议阅读 phpDoc 快速入门教程。请注意,doxygen 支持 phpdoc 语法。
Use your favorite $searchengine to look for "php doxygen tutorial". I found http://www.doxygen.nl/manual/docblocks.html#specialblock to be helpful.
For PHP, you might also want to look into phpDocumentor or docblox.
Generally, a docblock header in a PHP file looks like this:
I suggest reading the phpDoc quickstart tutorial. Note that doxygen supports the phpdoc syntax.