redirect 重定向的通用語法為:redirect(url,params=arrayzdgcqwlmy(),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 中跨分組跳轉只是多了乙個分組專案名稱的概念.
ThinkPHP中語言設定
最近乙個專案需要用英文頁面,自己對thinkphp也不是很熟,於是找了很久才知道如何設定跳轉提示中的標題 msgtitle如何設定。在thinkphp的框架中,conf convention.php中定義了 default lang zh cn 預設使用中文介面,可以在自己的專案配置檔案中更改這個引...
thinkPHP中時間轉換
一 在php中完成 這種方式在php程式中完成轉換,優點是無論是不是資料庫中查詢獲得的資料都能轉換,轉換範圍不受限制,缺點是占用php解析器的解析時間,速度相對慢。1 日期轉換為unix時間戳用函式 strtotime 一般形式 strtotime 2010 03 24 08 15 42 可以自有定...
thinkphp中的setInc setDec方法
thinkphp中setinc setdec方法 可用於統計字段 通常是數字型別的字段 的更新,例如積分,等級,登陸次數等 必須配合連貫操作where一起使用 1 user m user 例項化user物件 2 user where id 5 setinc score 3 使用者的積分加3 3 us...