本文实例分析了PHP页面跳转操作。分享给大家供大家参考,具体如下:
跳转
跳转: 执行header时候,并不是立即结束,而是会把页面执行完毕;在header前面不能有任何输出,若有开启输出缓冲则不提示错误,PHP.ini->output_buffering = 4096|OFF 提示跳转:Meta http-equiv="Refresh" content="3;url=other.PHP"/>
PHP;">
header('Location:other.PHP');
//file_put_contents('bee.txt','execute');
die;
封装的跳转函数:
PHP;">
/*
*跳转
*@param $url 目标地址
*@param $info 提示信息
*@param $sec 等待时间
*return void
*/
function jump($url,$info=null,$sec=3)
{
if(is_null($info)){
header("Location:$url");
}else{
// header("Refersh:$sec;URL=$url");
echo"<Meta http-equiv=\"refresh\" content=".$sec.";URL=".$url.">";
echo $info;
}
die;
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/18931.html