redirect()

2018-06-22 14:35 更新

作用:设置网页重定向。 语法: null redirect(string $url[, int $code][, int $wait][, string $msg])

参数:

  • $url 跳转的 URL
  • $code HTTP 状态码,可选 301(永久) 或 302(暂时,默认)。
  • $wait 等待时间,单位 秒,默认值 0
  • $msg 跳转提示信息。

说明: 该函数提供三种方式用来跳转链接,即使在已经发送头部信息之后依旧能进行重定向网页。

示例:

<?php
redirect('test.php'); //跳转到当前目录下的 test.php 文件
redirect(site_url('test.php'), 301, 3, '该页面已永久重定向至 '.site_url('test.php')); //定时3秒,跳转到网站根目录下的 test.php 并输出提示信息
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号