服务器上有一个文件。该文件是一个 ZIP 文件。
该文件必须通过我的服务器下载到客户端。
我尝试使用 readfile 函数,但不是下载文件,而是显示奇怪的符号......
我在这里上传了它:http: //b-games.co.il/test/download/
这是代码:
$file = "2title3.gif";
if(file_exists($file))
{
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
我也试过用这个:
$url = 'http://example.com/some.url';
$src = fopen($url, 'r');
$dest = fopen('php://output', 'w');
$bytesCopied = stream_copy_to_stream($src, $dest);
但它做了同样的事情......只是显示了奇怪的符号。
我究竟做错了什么? http://php.net/manual/en/function.readfile.php 这里说它应该可以工作......
一个重要更新:
在我的本地主机上,相同的代码有效!
有谁知道为什么?
谢谢!