codecamp

redirect()

作用:设置网页重定向。 语法: 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 并输出提示信息
url()
set_query_string()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

挂钩机制

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }