时间:2021-07-01 10:21:17 帮助过:28人阅读
本文实例讲述了ThinkPHP框架使用redirect实现页面重定向的方法。分享给大家供大家参考,具体如下:
ThinkPHP redirect 方法
ThinkPHP redirect 方法可以实现页面的重定向(跳转)功能。redirect 方法语法如下:
$this->redirect(string url, array params, int delay, string msg)
参数说明:
参数 | 说明 |
url | 必须,重定向的 URL 表达式。 |
params | 可选,其它URL参数。 |
delay | 可选, 重定向延时,单位为秒。 |
msg | 可选,重定向提示信息。 |
ThinkPHP redirect 实例
在 Index 模块 index 方法中,重定向到本模块的 select 操作:
class IndexAction extends Action{ public function index() { $this->redirect('select', array('status'=>1), 3, '页面跳转中~'); //3秒 } }
一些常用的 redirect 重定向例子:
// 不延时,直接重定向 $this->redirect('select', array('status'=>1)); // 延时跳转,但不带参数,输出默认提示 $this->redirect('select', '', 3); // 重定向到其他模块操作 $this->redirect('Public/login'); // 重定向到其他分组 $this->redirect('Admin-Public/login');
提示:
1. 当延时跳转时,必须输入 params 参数(可以为空),也就是 delay 必须出现在第 3 位上。
2. 如果发现跳转后的 URL 有问题,由于 redirect 方法调用 U 方法来生成跳转后的地址,这时候可以测试一下 U 方法生成的地址是否正确,再检查一下系统配置。
php 字符串中是否包含指定字符串的多种方法讲解
php框架CodeIgniter使用redis的方法讲解
PHP编程实现的TCP服务端和客户端功能示例讲解
以上就是ThinkPHP框架使用redirect实现页面重定向的方法实例讲解的详细内容,更多请关注Gxl网其它相关文章!