- 相关推荐
ThinkPHP中redirect用法实例分析
ThinkPHP中redirect如何使用,下面是小编给大家提供的ThinkPHP中redirect用法实例分析,大家可以参考阅读,更多详情请关注应届毕业生考试网。
redirect 重定向的通用语法为:redirect(url,params=array(),delay=0,msg=''),假设当前为默认 HOME分组 Aritcle模块 insert操作,一些例子如下:
代码如下:
// 跳转到 edit 操作
$this->redirect('edit');
// 跳转到 UserAction下的edit 操作
$this->redirect('User/edit');
// 跳转到 Admin分组默认模块默认操作
$this->redirect('Admin/');
// 跳转到 Admin分组Index模块view操作
$this->redirect('Admin-Index/view');
// 跳转到 Admin分组Index模块view操作,uid参数为1,延迟3秒跳转
$this->redirect('Admin-Index/view', array('uid'=>1), 3,'页面跳转中~')
// 跳转到 其他OtherApp项目(非分组)的Admin项目分组User模块view操作
$this->redirect('OtherApp://Admin-User/view');
同项目分组中的URL访问一样,redirect 中跨分组跳转只是多了一个分组项目名称的概念.
提示:可以在 redirect 中使用路由,redirect 方法的参数用法和 U函数 的用法一致.可参考 U函数 生成URL地址相关部分内容.
希望本文所述对大家基于ThinkPHP的PHP程序设计有所帮助。
【ThinkPHP中redirect用法实例分析】相关文章:
分析thinkphp常见路径用法分析10-29
php中return的用法实例分析10-27
Java中的多态用法实例分析10-23
php中fsockopen用法实例06-20
php中引用的用法分析06-22
C语言for语句的用法实例07-08
php中in-array函数用法分析10-03
ThinkPHP中create()方法自动验证表单信息09-10
php之readdir函数用法实例09-21