当前位置:Gxlcms > PHP教程 > PHP之页面跳转

PHP之页面跳转

时间:2021-07-01 10:21:17 帮助过:18人阅读

跳转
header()为php函数,向浏览器发送指定命令

  • 立即跳转:
header('Location:other.php');
//file_put_contents('bee.txt','execute');
die;

执行header时候,并不是立即结束,而是会把页面执行完毕;在header前面不能有任何输出,若有开启输出缓冲则不提示错误,php.ini->output_buffering = 4096|OFF


  • 提示跳转:
header('Refresh:3,Url=other.php');
echo'3s 后跳转';
//由于只是普通页面展示,提示的样式容易定制die;
/*
  *跳转
  *@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$info;
    }
    die;
}

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP之页面跳转,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行