2

我有一个记录印象然后显示图像的 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;

然后浏览器只读取一次文件。有人知道为什么是这样吗?

4

1 回答 1

2

出于测试目的,请尝试通过控制台从控制台启动您的 Firefox

firefox -safe-mode -no-remote

暂时禁用所有扩展。也许其中一个扩展导致了这种情况。

于 2012-08-10T14:46:19.177 回答