Home >Backend Development >PHP Tutorial >php header函数的问题,比如说header之前不能有实际的输出

php header函数的问题,比如说header之前不能有实际的输出

WBOY
WBOYOriginal
2016-06-06 20:47:491045browse

原文链接:PHP Header用于页面跳转要注意的几个问题总结php技巧脚本之家

搜到了这篇文章,开头就说了三个关于PHP header()的注意事项,

  1. location和“:”号间不能有空格,否则会出错。
  2. 在用header前不能有任何的输出。
  3. header后的PHP代码还会被执行。

第3点测试结果无误。

第1点,测试大概是指的 header('Location: http://segmentfault.com/');Location: 不能有空格吧,但其实是可以有的。

主要是第2点,header前不能有任何的输出有疑问,我测试了下面的代码,能成功跳转啊:

<code class="lang-php">asdf
<?php header('Location : http://segmentfault.com/');
</code></code>

到底要怎样测试才能报错呢?php手册上的“Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP”到底是啥意思?

回复内容:

原文链接:PHP Header用于页面跳转要注意的几个问题总结php技巧脚本之家

搜到了这篇文章,开头就说了三个关于PHP header()的注意事项,

  1. location和“:”号间不能有空格,否则会出错。
  2. 在用header前不能有任何的输出。
  3. header后的PHP代码还会被执行。

第3点测试结果无误。

第1点,测试大概是指的 header('Location: http://segmentfault.com/');Location: 不能有空格吧,但其实是可以有的。

主要是第2点,header前不能有任何的输出有疑问,我测试了下面的代码,能成功跳转啊:

<code class="lang-php">asdf
<?php header('Location : http://segmentfault.com/');
</code></code>

到底要怎样测试才能报错呢?php手册上的“Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP”到底是啥意思?

header函数内的String原则上会被直接加到HTTP头里面去。所以说,如果发送

Location : http://with.blank.com

这种并不符合HTTP规范的HTTP头,很可能整个HTTP Response都无法解析。
幸运的是,PHP貌似为你修复了这个HTTP头格式问题。

关于HTTP头先发的问题,的确不应该在HTTP内容输出之后输出HTTP头。但是服务器会缓存输出,虽然你使用了echo或者print,但在那个时刻服务器还没有将这些内容作为HTTP报文输出,这个时候你仍然有机会修改HTTP头。

如果你只是单纯想要引发一个错误的话,很简单,在header()之前输出一个绝对超过缓存大小的HTTP内容就可以了。以下是不良示范。

<code class="lang-php"><?php for($i = 0; $i < 1e5; $i++) echo $i;
  header("ABCABC: BCDBCD");
</code></code>

@scaret 应该是对的, 其实就是缓存的问题.

<code><?php echo "<html></code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn