zoukankan      html  css  js  c++  java
  • php重定向页面的三种方式

    PHP页面跳转一、header()函数

    header()函数是PHP中进行页面跳转的一种十分简单的方法。header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。

    header()函数的定义如下:

    void header (string string [,bool replace [,int http_response_code]])

    可选参数replace指明是替换前一条类似标头还是添加一条相同类型的标头,默认为替换。

    第二个可选参数http_response_code强制将HTTP相应代码设为指定值。 header函数中Location类型的标头是一种特殊的header调用,常用来实现页面跳转。注意:1.location和“:”号间不能有空格,否则不会跳转。

    2.在用header前不能有任何的输出。

    3.header后的PHP代码还会被执行。例如

    1. < ?php   
    2. //重定向浏览器   
    3. header("Location: http://blog.csdn.net/abandonship");   
    4. //确保重定向后,后续代码不会被执行   
    5. exit;  
    6. ?>    

    PHP页面跳转二、Meta标签

    Meta标签是HTML中负责提供文档元信息的标签,在PHP程序中使用该标签,也可以实现页面跳转。若定义http-equiv为refresh,则打开该页面时将根据content规定的值在一定时间内跳转到相应页面。若设置content="秒数;url=网址",则定义了经过多长时间后页面跳转到指定的网址。

    meta http-equiv="refresh" content="1;url=http://blog.csdn.net/abandonship"

    例,以下程序meta.php实现在该页面中停留一秒后页面自动跳转。

    1. <?php     
    2. $url = "http://blog.csdn.net/abandonship";   
    3. ?>   
    4. <html>     
    5. <head>     
    6. <meta http-equiv="refresh" content="1;url=<?php echo $url; ?>">     
    7. </head>     
    8. <body>   
    9. It's transit station.  
    10. </body>  
    11. </html>  

    PHP页面跳转三、JavaScript

    1. <?php    
    2. $url = "http://blog.csdn.net/abandonship";  
    3. echo "<script type='text/javascript'>";  
    4. echo "window.location.href='$url'";  
    5. echo "</script>";   
    6. ?>   
  • 相关阅读:
    006使用python编写一个猜数字的程序
    002python函数、高级特性
    008python绘制五个五角星
    005使用 Python 生成 200 个激活码
    001python基础
    003python函数式编程,模块
    004python面向对象,错误,调试和测试
    Docker系列之(一):10分钟玩转Docker
    mongoDB系列之(一):10分钟玩转mongoDB
    Hadoop系列之(二):Hadoop集群部署
  • 原文地址:https://www.cnblogs.com/Im-Victor/p/9277985.html
Copyright © 2011-2022 走看看