程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> ThinkPHP中redirect用法分析

ThinkPHP中redirect用法分析

編輯:PHP綜合

本文實例講述了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相關內容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結》、《ThinkPHP常用方法總結》、《smarty模板入門基礎教程》及《PHP模板技術總結》。

希望本文所述對大家基於ThinkPHP框架的PHP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved