MVC 中的重定向 PHP
我正在开发一个纯粹基于 PHP 的个人框架。
假设我正在控制器内的一个方法中,并且我想重定向到另一个页面,我该怎么做?至少在概念上是这样。
I am developing a personal framework purely on PHP.
Let's say I am in a method inside a controller and I want to redirect to another page how would I do that? At least conceptually.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您开发的 MVC 应该有一个输入类和一个输出类 (I/O),您应该在输出类中创建一个名为“重定向”的函数,并从基本 url 构建新的 url,如下所示:
这样,在您的控制器中,您可以简单地使用输入类为您进行重定向。
If your developing MVC You should have an input class and an output class (I/O), you should create a function called redirect within the output class and build the new url from your base url like so:
This way within your controller you can simply use the input class do your redirect for you.
此代码必须是脚本的第一个输出。在向客户端生成任何输出后,您无法执行重定向。将重定向发送到客户端后,您可以退出脚本,因为用户看不到生成的任何其他输出。
This code must be the first output of the script. You can not perform redirection after generating any output to the client. Once you have sent the redirection to the client, you can exit the script because any additional output generated would not be seen by the user.