使用 codeigniter 进行 MVC 项目的 phpdoc

发布于 2024-09-14 09:29:23 字数 336 浏览 11 评论 0原文

我按照 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 技术交流群。

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

发布评论

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

评论(1

空城仅有旧梦在 2024-09-21 09:29:23

我认为 PHPDoc 不支持与 CodeIgniter 的这种类型的集成。也许您应该使用 PHPDoc 并手动修改创建的文档。

不管怎样,使用 CodeIgniter 并正确重命名所有文件,你应该不会有任何问题:

Controller -> controllers/home.php
Model -> models/home.php
View -> home.php

如果你指定你正在使用 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:

Controller -> controllers/home.php
Model -> models/home.php
View -> home.php

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/

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