PHP页面跳转之header()函数的使用:某个页面直接跳转至其他页面
header()函数的定义: void header (string string [,bool replace [,int http_response_code]])
可选参数replace指明是替换前一条类似标头还是添加一条相同类型的标头,默认为替换。
第二个可选参数http_response_code强制将HTTP相应代码设为指定值。
header函数中Location类型的标头是一种特殊的header调用,常用来实现页面跳转。
注意:
1.location和“:”号间不能有空格,否则不会跳转。
2.在用header前不能有任何的输出。
3.header后的PHP代码还会被执行。
< ?php //重定向浏览器 header("Location: http://web. muzhuangnet.com"); //确保重定向后,后续代码不会被执行 exit; ?>
相关阅读 >>
更多相关阅读请进入《header函数》频道 >>