ユーザーが画像を直接ダウンロードできるスクリプトを作成しようとしていました。
ここに私が最終的なコードがあります、
<?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 にアクセスするたびに、ゼロ バイト データのファイルが返されます。
この問題を解決するのを手伝ってくれませんか?