2022-10-28 11:12:46 - 米境通跨境電商
本文實(shí)例講述了ThinkPHP框架使用redirect實(shí)現(xiàn)頁(yè)面重定向的方法。分享給大家供大家參考,具體如下:
ThinkPHPredirect方法
ThinkPHPredirect方法可以實(shí)現(xiàn)頁(yè)面的重定向(跳轉(zhuǎn))功能。redirect方法語(yǔ)法如下:
$this->redirect(stringurl,arrayparams,intdelay,stringmsg)
參數(shù)說(shuō)明:
參數(shù)
說(shuō)明
url
必須,重定向的URL表達(dá)式。
params
可選,其它URL參數(shù)。
delay
可選,重定向延時(shí),單位為秒。
msg
可選,重定/
/向提示信息。
ThinkPHPredirect實(shí)例
在Index模塊index方法中,重定向到本模塊的select操作:
classIndexActionextendsAction{
publicfunctionindex()
{
$this->redirect('select',array('status'=>1),3,'頁(yè)面跳轉(zhuǎn)中~');//3秒
}
}
一些常用的redirect重定向例子:
//不延時(shí),直接重定向
$this->redirect('select',array('status'=>1));
//延時(shí)跳轉(zhuǎn),但不帶參數(shù),輸出默認(rèn)提示
$this->redirect('select','',3);
//重定向到其他模塊操作
$this->redirect('Public/login');
//重定向到其他分組
$this->redirect('Admin-Public/login');
提示:
希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。