Home  >  Article  >  Backend Development  >  ThinkPHP中redirect用法分析_PHP

ThinkPHP中redirect用法分析_PHP

WBOY
WBOYOriginal
2016-05-31 18:15:42872browse

本文实例讲述了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程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn