Home  >  Article  >  Backend Development  >  php中header执行后没有输出,该怎么解决

php中header执行后没有输出,该怎么解决

WBOY
WBOYOriginal
2016-06-13 12:29:501122browse

php中header执行后没有输出
$testStr = "aaa";
$testStr = "ccccccccc";
header("HTTP/1.1 304 Not Modified"); 
echo $testStr;
?>
为什么我的的代码会没有输出304可以减少服务器很多流量,但用在程序内要对“上次”判断准确,把握时间段不是容易的事对于动态页面做缓存加速,首先要在 Response 的 HTTP Header 中增加 Last Modified 定义,其次根据 Request 中的 If Modified Since 和被请求内容的更新时间来返回 200 或者 304 。虽然在返回 304 的时候已经做了一次数据库查询,但是可以避免接下来更多的数据库查询,并且没有返回页面内容而只是一个 HTTP Header,从而大大的降低带宽的消耗,对于用户的感觉也是提高。 你不知道304是什么意思么?

304表示正文和“上次”一样,只发header,不发正文的,通常用在响应客户端刷新的时候(就是短时间之前发送过一次了)

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