1. 程式人生 > >php中header()

php中header()

head 進行 報文 百度首頁 文本 res tex 內容 頁面

瀏覽器訪問http服務器,接收到響應時,會根據響應報文頭的內容進行一些具體的操作,在php中,我們能夠使用 header來設置這些內容

  • 設置文本編碼

    • 設置編碼格式為:utf-8
      header(‘content-type:text/html; charset= utf-8‘);

  • 設置頁面跳轉

    • 設置跳轉到百度首頁
header(‘location:http://www.baidu.com‘);

  • 設置頁面間隔刷新
    header(‘refresh:3; url=http://www.xiaomi.com‘);

php中header()