前言
本文介绍的是在PHP中用header("location:test.PHP")
进行跳转要注意以下几点,有助于解决一些新手经常遇到的问题
一、location和“:”号间不能有空格,否则会出错。
二、在用header前不能有任何的输出。
三、header后的PHP代码还会被执行。
下面是和asp中重定向response.redirect
的比较:
例1:
PHP;">
response.redirect "../test.asp"
header("location:../test.PHP");
两者区别:
asp的redirect
函数可以在向客户发送头文件后起作用.
如
<%response.redirect "../test.asp"%>