PHP 頁面跳轉的三種方式

第一種方式:header()

header()函數的主要功能是將HTTP協議標頭(header)輸出到瀏覽器。
語法:javascript

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

可選參數replace指明是替換前一條相似標頭仍是添加一條相同類型的標頭,默認爲替換。
第二個可選參數http_response_code強制將HTTP相應代碼設爲指定值。 header函數中Location類型的標頭是一種特殊的header調用,經常使用來實現頁面跳轉。注意:1.location和「:」號間不能有空格,不然不會跳轉。php

舉例:html

1java

2windows

3瀏覽器

4函數

5ui

6url

7spa

<html>

<?php

/* This will give an error. Note the output

 * above, which is before the header() call */

header('Location: http://www.example.com/');

exit;

?>

注意:

  • header執行前不能有任何輸出
  • location和:之間不能有空格
  • header後的php代碼還會執行,因此須要注意使用exit;
 

第二種方式:meta標籤

Meta標籤是HTML中負責提供文檔元信息的標籤,在PHP程序中使用該標籤,也能夠實現頁面跳轉。 若定義http-equiv爲refresh,則打開該頁面時將根據content規定的值在必定時間內跳轉到相應頁面。

1

2

3

meta http-equiv="refresh"

content="1;url=http://

www.baidu.com">

第三種方式:javascript

經過使用windows.location.href=‘url’; 是頁面自動跳轉到新的地址

1

2

3

4

5

6

7

< ?php 

$url "http://www.baidu.com"

echo "< script language='javascript'

type='text/javascript'>"; 

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

echo "< /script>"

?>

相關文章
相關標籤/搜索