如何使用 PHPdoc 记录数据库使用情况?

发布于 2024-10-15 23:50:28 字数 210 浏览 2 评论 0原文

现在我想知道其他人是否在函数头中记录数据库的使用情况...例如, fn() 可能会读取或写入数据库(或其表),或者创建、修改或删除数据库或表。 (附带问题:使用“USE xxx”更改数据库的 fn() 应该“记住”进入时的当前数据库并在退出之前再次使用它吗?)

在我看来,这种事情应该 被记录下来,但是如何最好地做到这一点呢? @uses,还是什么?

Now I am wondering if others document database usage in function headers ... for instance, a fn() might read or write a database (or table thereof), or create, modify or drop a database or table. (side question: should a fn() which changes the database with "USE xxx" 'remember' the current database on entry and USE it again before exit?)

It seems to me that this sort of thing should be documented, but how best to do so? @uses, or what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我们的影子 2024-10-22 23:50:28

为什么不使用 @link 和一个列表,以及帮助器列表:

/**
 * Some comments here.
 *
 * Helper functions:
 * * {@link someHelper}
 * * {@link theOtherHelper}
 *
 * Reads tables:
 * * {@link Table1}
 * * {@link Table2}
 *
 * Reads/Writes tables:
 * * {@link Table3}
 * * {@link Table4}
 */

然后,您为这些表创建一些主题页面,只有一个简短的描述,“保存业务流程 X 的参数”。

Why not use @link and a list, along with list of helpers:

/**
 * Some comments here.
 *
 * Helper functions:
 * * {@link someHelper}
 * * {@link theOtherHelper}
 *
 * Reads tables:
 * * {@link Table1}
 * * {@link Table2}
 *
 * Reads/Writes tables:
 * * {@link Table3}
 * * {@link Table4}
 */

Then you make some topic pages for those tables, with nothing but a short description, "Holds parameters for business process X."

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