标签: php
如PHP手册中所述:
请记住,必须在发送任何实际输出之前调用header(),无论是普通HTML标记,文件中的空行还是PHP
以下代码的输出重定向到给定的网址而没有任何错误。无法找到为什么这不符合上面的PHP手册。
<html> <body> <div> some error </div> </body> </html> <?php header('Location: http://google.com/'); ?>