redirect()

2018-06-22 14:35 更新

作用:設置網(wǎng)頁重定向。 語法: null redirect(string $url[, int $code][, int $wait][, string $msg])

參數(shù):

  • $url 跳轉(zhuǎn)的 URL。
  • $code HTTP 狀態(tài)碼,可選 301(永久) 或 302(暫時,默認)。
  • $wait 等待時間,單位 秒,默認值 0。
  • $msg 跳轉(zhuǎn)提示信息。

說明: 該函數(shù)提供三種方式用來跳轉(zhuǎn)鏈接,即使在已經(jīng)發(fā)送頭部信息之后依舊能進行重定向網(wǎng)頁。

示例:

<?php
redirect('test.php'); //跳轉(zhuǎn)到當前目錄下的 test.php 文件
redirect(site_url('test.php'), 301, 3, '該頁面已永久重定向至 '.site_url('test.php')); //定時3秒,跳轉(zhuǎn)到網(wǎng)站根目錄下的 test.php 并輸出提示信息
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號