请求类(Kohana)的常见任务是什么?
我正在使用 MVC 架构创建 PHP 框架,并从一些已经完成的框架(如 Kohana 3.1)中汲取灵感。我也在许多其他框架中看到过 Request 类。常见任务有哪些?好的解释将是无价的! ))
I'm creating PHP framework with MVC architecture and I take ideas from some already finished frameworks like Kohana 3.1. I have seen Request class in lot of other frameworks too. What's it common tasks? Nice explanation would be priceless! ))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它代表用户的 HTTP 请求并在框架(通常是控制器)中启动适当的资源。这不是一个非常困难的概念。
It represents the user's HTTP request and launches the appropriate resources in the framework (controller usually). Not a terribly difficult concept.
请求类将寻找匹配的路由并加载适当的控制器来处理请求。
Request class will look for a matching route and load the appropriate controller to handle the request.