使用 codeigniter 进行 MVC 项目的 phpdoc
我按照 MVC 模式在 Codeigniter 中开发了一个项目。
这意味着,例如,我有一个名为 Items 的控制器,它调用一个名为 Items_model 的模型,该模型从数据库获取文件,最后这些文件被传递到名为 Item_view 的视图。
现在我需要记录它,我正在尝试使用 phpdoc。
我的主要问题是如何在控制器中函数的解释中,以函数方式将该函数的行为与模型和视图链接起来,而不仅仅是以纯文本形式编写名称。 我正在阅读有关软件包的信息,但不知道如何正确使用它,
我希望你能提供帮助,我对 phpdoc 非常菜鸟。
预先感谢并抱歉我的英语。
斯维尔德。
i developed a project in Codeigniter following the MVC pattern.
That means that , for example, i have a controller called Items , which call a model called Items_model ,which get files from database and finally those those file are passed to a view called Item_view.
Now i need to document it, and im trying to use phpdoc.
My main question is about how to , inside the explanation of a function in a controller, link the behaviour of that function with a model and the view in a functional way, not just write the names in plain text.
i was reading about packages, but dont know how to use it properly
i hope you can help, im very noob with phpdoc.
thanks in advance and sorry for my english.
Sverd.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 PHPDoc 不支持与 CodeIgniter 的这种类型的集成。也许您应该使用 PHPDoc 并手动修改创建的文档。
不管怎样,使用 CodeIgniter 并正确重命名所有文件,你应该不会有任何问题:
如果你指定你正在使用 CodeIgniter (它使用 MVC 模式),文档本身会解释。
PS:
一个“谷歌搜索”链接(我还没有完全阅读):
http://codeigniter.com /forums/viewthread/58302/
I think that PHPDoc doesn't support this type of integration with CodeIgniter. Probably you should use PHPDoc and modify manually the documentation created.
Anyways, using CodeIgniter and renaming correctly all the files, you shouldn't have any problem:
If you specify that you're using CodeIgniter (which uses MVC pattern), the documentation explains by itself.
PS:
One 'googled' link (I haven't read it completely):
http://codeigniter.com/forums/viewthread/58302/