1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?php $file_path = 'uploads/test/1.png' if (!is_file($file)) { exit('没有文件'); } header("Content-type:application/octet-stream"); header("Content-Disposition:attachment;filename = " . basename($file_path)); header("Accept-ranges:bytes"); header("Accept-length:" . filesize($file_path)); $handle = fopen($file, 'rb'); while (!feof($handle)) { echo fread($handle, 102400); } fclose($handle); exit(); ?>
|