在哪里可以了解有关 PHP 框架结构的更多信息?
我使用过一些 PHP 框架,我可以欣赏通过 ORM 与 MySQL 通信的简化方式,以及使用 MVC 分离数据的方式。但我很好奇,我在哪里可以了解这些想法是如何构建的?例如,制作 ORM 需要什么? MVC 框架中还包含哪些内容以及它们是如何连接的?
I've used a few PHP frameworks and I can appreciate the simplified ways of communicating with MySQL via ORM, and the separation of data using MVC. I'm curious though, where can I learn about how these ideas are constructed? For instance, what goes into making an ORM? What else goes into an MVC framework and how is it all connected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该多读一些关于设计模式的知识,《Head First Design Patterns》这本书很好!
You should read more about design patterns, the book "Head First Design Patterns" is very good!
阅读您使用过的框架的源代码。它是由另一位像您一样的 PHP 编码人员使用您编程所用的相同语言编写的。
Read the source code of the frameworks you've used. It was written by another PHP coder just like you, in the same language you program in.