问题描述
- php中header执行后没有输出
- <?php
$testStr = ""aaa"";
$testStr = ""ccccccccc"";
header(""HTTP/1.1 304 Not Modified"");
echo $testStr;
?>
为什么我的的代码会没有输出
解决方案
header放在第一行,header前边不能有任何的输出,包括空格也不行。
欢迎加入web技术交群群:WEB、php技术交流 153436140
时间: 2024-10-29 21:54:09