如何使用 PHPdoc 记录数据库使用情况?
现在我想知道其他人是否在函数头中记录数据库的使用情况...例如, 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 @link 和一个列表,以及帮助器列表:
然后,您为这些表创建一些主题页面,只有一个简短的描述,“保存业务流程 X 的参数”。
Why not use @link and a list, along with list of helpers:
Then you make some topic pages for those tables, with nothing but a short description, "Holds parameters for business process X."