创建 MVC Web 应用程序的步骤
我读过很多关于 MVC 方法的教程...我现在要使用 PHP 启动一个电子商务应用程序...所以我很困惑从哪里开始。(什么是最好的目录层次结构、文件、模板等)
知道我将创建管理页面(在 MVC 的子目录中)和网站页面......我想要的只是知道如何组织这一切。
我已经创建了 PHP 网站(我擅长 PHP 和 OOP)。但 MVC 则不然。
谢谢
I've read many tutorials about MVC method ... I am now about to start an e-commerce application with PHP... So I'm confused about from where to start.(What's the best directory hierarchy ,the files, the templates etc)
Knowing that I will create admin pages(in a subdirectory with MVC), and website pages ... all I want is to know how to organize all this.
I've already created PHP websites (I am good in PHP and OOP). But not with MVC.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 @Daniel A. White 所提到的,已经存在很多 PHP MVC 框架。看一下:
As mentioned by @Daniel A. White, there already exists a lot of PHP MVC frameworks. Have a look at:
有许多不同的 PHP 开源 MVC 框架(例如 CakePHP)应该会给您带来启发。
There are a number of different open source MVC frameworks for PHP such as CakePHP that should get you inspiration.
我会从像 CodeIgniter 这样的 PHP 框架开始,因为它已经封装了一个简单、有效且易于使用的 MVC 结构这将使您掌握开始编写此类 Web 应用程序所需的逻辑。他们还拥有良好的用户指南和支持基础 - 因此,如果您遇到麻烦,帮助永远不会那么遥远。
I'd start with a PHP framework like CodeIgniter because it's already packaged with a simple, effective and easy-to-use MVC structure that'll get you up to stratch with the logic necessary to start programming this type of web app. They also have a good user guide and support base - so help's never that far away if you run into trouble.