我试图编写一个脚本,用户可以通过该脚本直接下载图像。
这是我最终得到的代码,
<?php
$fileContents = file_get_contents('http://xxx.com/images/imageName.jpg');
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.urlencode("http://xxx.com/images/imageName.jpg"));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($fileContents));
ob_clean();
flush();
echo $fileContents;
exit;
?>
但是每次我在浏览器中点击上述脚本的 url 时,它都会返回一个零字节数据的文件。
你愿意帮我解决这个问题吗?