ホームページ >バックエンド開発 >PHPチュートリアル >Readfile ファイルのダウンロードに関連する問題、効果的な解決策があれば、追加ポイントが掲載されます
Readfile ファイルのダウンロードの問題、効果的な解決策があれば、追加ポイントが掲載されます
皆さん、こんにちは。今、私たちのプロジェクトはかなり厄介な問題に遭遇しています。 readfile を使用して画像ファイルをダウンロードする場合、ファイルの先頭に以前より 1 桁 (0x0A) が追加されます。UEdit を使用してファイルの先頭の 16 進数を削除すると、ファイルを正しく読み取ることができます。
ソースコードは次のとおりです:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php $file = 'test_img.bmp'; 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; } ?>