PHP下载.jpg或.avi

时间:2012-07-25 10:04:07

标签: php file download

我遇到了使用PHP从服务器下载.jpg和.avi文件的问题 我有以下代码:

$fileName = "Koala.jpg";
$filePath = "./Koala.jpg";
if (!file_exists($filePath)){
    echo "No file";
    return;
}
$fp = fopen($filePath, "r");
$fileSize = filesize($filePath);
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Content-Length: $fileSize");
header("Content-Disposition: attachment;filename=".$fileName);

$buffer = 1024;
while(!feof($fp)){
    $data = fread($fp, $fileSize);
    echo $data;
}
fclose($fp);

代码成功下载.txt文件,可以读取下载的文件。 但是,当涉及到.jpg时,无法读取下载的.jpg文件。 任何人都可以伸出援手吗?感谢

刚试过另一种方法,它运作良好

$file = 'Koala.jpg';

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;
}

但是想知道是什么原因导致第一种方法失败,即使使用fopen(“xxx”,“rb”)。谢谢

4 个答案:

答案 0 :(得分:0)

尝试替换image / jpeg的application / octet-stream。

此致

答案 1 :(得分:0)

我不是php专家(很遗憾地说)但我记得在Windows服务器上使用php时遇到类似的问题。它源于打开没有二进制标志的文件(样本中应为fopen($filePath, "rb");)。如果您没有设置该标志,那么当您从流中读取数据时可能会更改数据,这可能会破坏您的文件(并且您不会在文本文件中注意到它)。

有关可用的不同模式的详细信息,请参阅http://www.php.net/manual/en/function.fopen.php

答案 2 :(得分:0)

尝试使用此 -

<?php
$filename = "MyImage.jpg";
$handle = fopen($filename, "rb");
$contents = fread($handle, filesize($filename));
fclose($handle);
?>

答案 3 :(得分:0)

而不是您正在使用的以下代码,

$buffer = 1024;
while(!feof($fp)){
    $data = fread($fp, $fileSize);
    echo $data;
}

只需使用readfile方法

即可
readfile($filePath);