在PHP中用header("location:test.php")进行跳转要注意以下几点,有助于解决一些新手经常遇到的问题 1、location和“:”号间不能有空格,否则会出错。飞飞Asp@技术乐园 2、在用header前不能有任何的输出。飞飞.Asp技术乐园 3、header后的PHP代码还会被执行。 下面是和asp中重定向response.redirect的比较: 例1:
response.redirect "../test.asp" header("location:../test.php");
两者区别: asp的redirect函数可以在向客户发送头文件后起作用. 如
<html><head></head><body> <%response.redirect "../test.asp"%> </body></html>
但是php中下例代码会报错:
<html><head></head><body> <? header("location:../test.php"); ?> </body></html>
只能这样:
<? header("location:../test.php"); ?> <html><head></head><body>...</body></html>
即header函数之前不能向客户发送任何数据. 例2: asp中
<html><head></head><body> <% response.redirect "../a.asp" response.redirect "../b.asp" %> </body></html>
结果是重定向a.asp文件. php呢?
<? header("location:../a.php"); header("location:../b.php"); ?> <html><head></head><body></body></html>
我们发现它重定向b.php. 原来在asp中执行redirect后不会再执行后面的代码. 而php在执行header后,继续执行下面的代码. 在这方面上php中的header重定向不如asp中的重定向.有时我们要重定向后,不能执行后面的代码: 一般地我们用
if(...) header("..."); else { ... }
但是我们可以简单的用下面的方法:
if(...) { header("...");exit();}
|