网页跳转的多种方式

2018-06-22 05:36:24来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

通用

Header函数

 

 header("Location: http://www.guanwei.org"); exit;

header('Refresh:3,Url=other.php');die;

 

Meta标签

 

< meta http-equiv="refresh" content="1;url=http://www.guanwei.org">

 

Js跳转

 

$url = "http://www.guanwei.org";

echo "<script language='javascript' type='text/javascript'>";

echo "window.location.href='$url'";

echo "</script>";

 

 

 

TP中的跳转

成功和失败跳转

 

if($newid){

     //成功

     $this -> success('成功',U(),1);

}else{

     //失败,给本身页面跳转

     $this -> error('添加失败',U(),2);

}

重定向跳转

 

$this -> redirect('Index/index');

redirect方法的参数用法和U函数的用法一致

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:(2018干货系列三)最新PHP学习路线整合

下一篇:位运算符——管理事务的开关状态