我有一个记录印象然后显示图像的 php 脚本。
// Determine which header to send.
$parts = explode('.', $tool->filename);
header("Content-Type: image/{$parts[1]}");
readfile('files/'.$tool->filename);
出于某种原因,Firefox 两次获取该文件。这是日志。
00:00:01.268 0.023 1211 182 GET 200 image/png http://localhost/ap/image.php?aid=1&t=6
00:00:01.347 0.162 1185 182 GET 200 image/png http://localhost/ap/image.php?aid=1&t=6
你可以看到他们一瞬间就分开了。如果我按如下方式更改脚本。
// Determine which header to send.
$parts = explode('.', $tool->filename);
//header("Content-Type: image/{$parts[1]}");
//readfile('files/'.$tool->filename);
echo 1;
然后浏览器只读取一次文件。有人知道为什么是这样吗?