當前位置:首頁 » 編程語言 » redirectphp參數

redirectphp參數

發布時間: 2022-10-10 03:47:28

❶ 跪求、在php中怎麼用redirect實現頁面跳轉

1、thinkPHP 的Action類的redirect方法可以實現頁面的重定向功能,redirect 重定向的通用語法為:edirect(url,params=array(),delay=0,msg='') //跳轉到edit操作 $this->redirect('edit')。

2、//跳轉到UserAction下的edit操作this->redirect('User/edit'),//跳轉到Admin分組默認模塊默認操作$this->redirect('Admin/')。

3、//跳轉到Admin分組Index模塊view操作$this->redirect('Admin-Index/view'),//跳轉到Admin分組Index模塊view操作,uid參數為1,延遲3秒跳轉 $this->redirect('Admin-Index/view',array('uid'=>1)。

4、同項目分組中的URL訪問一樣,redirect 中跨分組跳轉只是多了一個分組項目名稱的概念,可以在 redirect 中使用路由,redirect 方法的參數用法和 U函數 的用法一致,可參考 U函數 生成URL地址相關部分內容。

❷ thinkphp中怎麼實現跳轉到其他網站

5.15 重定向
Action類的redirect方法可以實現頁面的重定向功能。

redirect方法的參數用法和U函數的用法一致(參考上面的URL生成部分),例如:

上面的用法是停留5秒後跳轉到News模塊的category操作,並且顯示頁面跳轉中字樣,重定向後會改變當前的URL地址。

如果你僅僅是想重定向要一個指定的URL地址,而不是到某個模塊的操作方法,可以直接使用redirect方法重定向,例如:

Redirect方法的第一個參數是一個URL地址。

5.14 頁面跳轉
在應用開發中,經常會遇到一些帶有提示信息的跳轉頁面,例如操作成功或者操作錯誤頁面,並且自動跳轉到另外一個目標頁面。系統的Action類內置了兩個跳轉方法success和error,用於頁面跳轉提示,而且可以支持ajax提交。使用方法很簡單,舉例如下:

Success和error方法都有對應的模板,並且是可以設置的,默認的設置是兩個方法對應的模板都是:

模板文件可以使用模板標簽,並且可以使用下面的模板變數:

$msgTitle:操作標題

$message :頁面提示信息

$status :操作狀態 1表示成功 0 表示失敗 具體還可以由項目本身定義規則

$waitSecond :跳轉等待時間 單位為秒

$jumpUrl :跳轉頁面地址

success和error方法會自動判斷當前請求是否屬於Ajax請求,如果屬於Ajax請求則會調用ajaxReturn方法返回信息,具體可以參考後面的AJAX返回部分。

這些事thinkphp3.0手冊上有的,自己下載手冊看看

❸ php中如何使用_redirect()

首先redirect不是php內置的函數。而是thinkphp框架里的

點擊函數可以看到最終是:

header('Location:XXX/');的過濾


使用方法可以查看手則


//跳轉到edit操作

$this->redirect('edit');

//跳轉到UserAction下的edit操作

$this->redirect('User/edit');


//跳轉到Admin分組默認模塊默認操作

$this->redirect('Admin/');


❹ thinkphp如何根據域名跳轉到其他目錄頁面

ThinkPHP redirect 方法可以實現頁面的重定向(跳轉)功能。

redirect 方法語法如下:

$this->redirect(string url, array params, int delay, string msg)

參數說明:

參數

說明

url
必須,重定向的 URL 表達式。

params
可選,其它URL參數。

delay
可選, 重定向延時,單位為秒。

msg
可選,重定向提示信息。

ThinkPHP redirect 實例

在 Index 模塊 index 方法中,重定向到本模塊的 select 操作:

classIndexActionextendsAction{
publicfunctionindex(){
$this->redirect('select',array('status'=>1),3,'頁面跳轉中~');
}
}
//不延時,直接重定向
$this->redirect('select',array('status'=>1));
//延時跳轉,但不帶參數,輸出默認提示
$this->redirect('select','',3);
//重定向到其他模塊操作
$this->redirect('Public/login');
//重定向到其他分組
$this->redirect('Admin-Public/login');

❺ thinkphp內核程序,無法重定向

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, '頁面跳轉中~');
}
}

重定向後得到的 URL 可能為ex.php/Index/select/status/1

由於該方法調用了 U 函數來生成實際的 URL 重定向地址,因此重定向後的 URL 可能因配置不同而有所不同:
隱藏了入口文件 index.php 的
5idev.com/Index/select/status/1
隱藏了入口文件 index.php 且設置了偽靜態的
hom/Index/select/status/1.html

一些常用的 redirect 重定向例子:
// 不延時,直接重定向
$this->redirect('select', array('status'=>1));
// 延時跳轉,但不帶參數,輸出默認提示
$thi www.hbbz08.com s->redirect('select', '', 3);
// 重定向到其他模塊操作
$this->redirect('Public/login');
// 重定向到其他分組
$this->redirect('Admin-Public/login');

提示: 1.當延時跳轉時,必須輸入 params 參數(可以為空),也就是 delay 必須出現在第 3 位上。
2.如果發現跳轉後的 URL 有問題,由於 redirect 方法調用 U 方法來生成跳轉後的地址,這時候可以測試一下 U 方法生成的地址是否正確,再檢查一下系統配置。
3.如果不想使用 U 方法生成跳轉地址,可以直接使用 PHP header 函數或 $this->redirect 的原型函數 redirect(string url, int delay, string msg),注意該 url 是個絕對地址,具體參見 PHP header 函數。

redirect 重定向與 success/error 跳轉的區別
•redirect 是使用的 PHP header 重定向,而 success/error 是使用的 html meta http-equiv='Refresh' 屬性跳轉。
•redirect 無模板頁面,輸出的提示信息是直接在函數內 echo 輸出的,而 success/error 有對應的模板。
•redirect 與 success/error 都可以實現頁面的跳轉,只是 redirect 可以無延時重定向,具體採用哪種視具體情況而定。

❻ PHP中$this->redirect('item/item/proid/11')什麼意思

ThinkPHP redirect 方法是實現頁面的重定向(跳轉)

redirect 方法語法如下:

$this->redirect(stringurl,arrayparams,intdelay,stringmsg)

參數說明:

參數

說明

url
必須,重定向的 URL 表達式。

params
可選,其它URL參數。

delay
可選, 重定向延時,單位為秒。

msg
可選,重定向提示信息。

ThinkPHP redirect 實例

在 Index 模塊 index 方法中,重定向到本模塊的 select 操作:

classIndexActionextendsAction{
publicfunctionindex(){
$this->redirect('select',array('status'=>1),3,'頁面跳轉中~');
}
}

❼ thinkphp5 重定向的時候是否能帶參數

class IndexAction extends Action{
public function index(){
$this->redirect('select', array('status'=>1), 3, '頁面跳轉中~');
}
}

❽ thinkphp5 redirect跳轉

重定向

hinkController類的redirect方法可以實現頁面的重定向功能。

redirect方法的參數用法和Url::build方法的用法一致(參考URL生成部分),例如:

//重定向到News模塊的Category操作$this->redirect('News/category', ['cate_id' => 2]);

上面的用法是跳轉到News模塊的category操作,重定向後會改變當前的URL地址。

或者直接重定向到一個指定的外部URL地址,例如:

//重定向到指定的URL地址 並且使用302$this->redirect('http://thinkphp.cn/blog/2',302);

可以在重定向的時候通過session快閃記憶體數據傳值,例如

$this->redirect('News/category', ['cate_id' => 2], 302, ['data' => 'hello']);

使用redirect助手函數還可以實現更多的功能,例如可以記住當前的URL後跳轉

redirect('News/category')->remember();

需要跳轉到上次記住的URL的時候使用:

redirect()->restore();

參考手冊:thinkphp重定向

❾ PHP重定向次數過多問題redirect

header()是php自帶函數 Redirect()是自定義方法, 你看看是不是因為你沒有定義Redirect方法。

❿ php頁面帶參數跳轉求助

你好,你這個只是網址跳轉 !只需修改訪問網址即可,不需修改代碼

熱點內容
蘋果ipad瀏覽器沒有伺服器怎麼辦 發布:2024-12-22 00:32:52 瀏覽:679
linux操作系統是什麼系統 發布:2024-12-22 00:30:46 瀏覽:88
linux密碼忘了怎麼辦 發布:2024-12-22 00:24:44 瀏覽:257
崩壞學園2金立伺服器是什麼 發布:2024-12-22 00:23:25 瀏覽:585
杭州灣新區碧桂園海上傳奇 發布:2024-12-22 00:18:16 瀏覽:461
c讀取sql資料庫 發布:2024-12-22 00:18:10 瀏覽:136
中學編程課 發布:2024-12-22 00:17:24 瀏覽:641
壓縮餅干星系玩什麼陣容 發布:2024-12-22 00:17:22 瀏覽:348
什麼是密碼原語 發布:2024-12-22 00:17:22 瀏覽:114
存儲對齊 發布:2024-12-22 00:01:07 瀏覽:783