如何使用 Doxygen 编写注释头 PHP 文件?

发布于 2024-11-15 06:28:43 字数 63 浏览 2 评论 0原文

我试图在每个 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 技术交流群。

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

发布评论

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

评论(1

旧时模样 2024-11-22 06:28:43

使用您最喜欢的 $searchengine 来查找“php doxygen 教程”。我发现 http://www.doxygen.nl/manual/docblocks.html#specialblock< /a> 有帮助。

对于 PHP,您可能还需要查看 phpDocumentorphpDocumentor 。 docblox-project.org/" rel="nofollow noreferrer">docblox。

一般来说,PHP 文件中的 docblock 标头如下所示:

<?php
/**
 * This is the file description
 *
 * @author Christian Weiske <[email protected]>
 */
...

我建议阅读 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:

<?php
/**
 * This is the file description
 *
 * @author Christian Weiske <[email protected]>
 */
...

I suggest reading the phpDoc quickstart tutorial. Note that doxygen supports the phpdoc syntax.

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