如何使用PHP强制下载文件


Answers:


232

阅读有关内置PHP函数readfile的文档

$file_url = 'http://www.myremoteserver.com/file.exe';
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"" . basename($file_url) . "\""); 
readfile($file_url); 

还要确保基于文件application / zip,application / pdf等添加适当的内容类型-但仅当您不想触发“另存为”对话框时。


6
为什么要这样?
约翰,

我的意思是,如果除.exe文件以外的其他文件而不是.Else文件,这应该可以正常工作。
皮特·迪格

7
不要忘记冲洗;-) ob_clean(); flush(); / *在* / readfile($ file_url)之前;
2015年

因此,如果您有10GB的大文件,php会尝试加载整个文件?
GDY

应当在结尾处调用exit()以避免任何潜在的问题(从经验上讲:-)
ykay说,Reinstate Monica

42
<?php
$file = "http://example.com/go.exe"; 

header("Content-Description: File Transfer"); 
header("Content-Type: application/octet-stream"); 
header("Content-Disposition: attachment; filename=\"". basename($file) ."\""); 

readfile ($file);
exit(); 
?>

或者,当无法使用浏览器打开文件时,可以仅使用Location标头:

<?php header("Location: http://example.com/go.exe"); ?>

1
标头中的文件名不应该$file(包含http部分),而是有效的文件名。
法比奥

1
没有应用程序/强制下载媒体类型;请改用application / octet-stream
浓汤

作品非常好!但是在存储的文件名中添加'。请使用:filename =“。basename($ file));
harry4516 '19

@ harry4516根据您的发现进行了修改
Marek Sebera

对于我的png图像,无法正常使用。谢谢。
Kamlesh

40
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"file.exe\""); 
echo readfile($url);

是正确的

或更好的exe文件类型

header("Location: $url");

@Fabio:将增加更多细节
起源

那太容易了。有效。那么,什么是file-Get_contents?只是好奇。谢谢。
约翰

将其下载到你的服务器
创世记

10
只需删除“ readfile()”之前的“ echo”,因为返回值指定为“返回从文件读取的字节数。如果发生错误,则返回FALSE,除非该函数被称为@readfile(),错误消息被打印。”。因此,您将获得文件内容+内容末尾的整数。
Mladen B.

22

首先显示文件,并将其值设置为url。

index.php

<a href="download.php?download='.$row['file'].'" title="Download File">

download.php

<?php
/*db connectors*/
include('dbconfig.php');

/*function to set your files*/
function output_file($file, $name, $mime_type='')
{
    if(!is_readable($file)) die('File not found or inaccessible!');
    $size = filesize($file);
    $name = rawurldecode($name);
    $known_mime_types=array(
        "htm" => "text/html",
        "exe" => "application/octet-stream",
        "zip" => "application/zip",
        "doc" => "application/msword",
        "jpg" => "image/jpg",
        "php" => "text/plain",
        "xls" => "application/vnd.ms-excel",
        "ppt" => "application/vnd.ms-powerpoint",
        "gif" => "image/gif",
        "pdf" => "application/pdf",
        "txt" => "text/plain",
        "html"=> "text/html",
        "png" => "image/png",
        "jpeg"=> "image/jpg"
    );

    if($mime_type==''){
        $file_extension = strtolower(substr(strrchr($file,"."),1));
        if(array_key_exists($file_extension, $known_mime_types)){
            $mime_type=$known_mime_types[$file_extension];
        } else {
            $mime_type="application/force-download";
        };
    };
    @ob_end_clean();
    if(ini_get('zlib.output_compression'))
    ini_set('zlib.output_compression', 'Off');
    header('Content-Type: ' . $mime_type);
    header('Content-Disposition: attachment; filename="'.$name.'"');
    header("Content-Transfer-Encoding: binary");
    header('Accept-Ranges: bytes');

    if(isset($_SERVER['HTTP_RANGE']))
    {
        list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2);
        list($range) = explode(",",$range,2);
        list($range, $range_end) = explode("-", $range);
        $range=intval($range);
        if(!$range_end) {
            $range_end=$size-1;
        } else {
            $range_end=intval($range_end);
        }

        $new_length = $range_end-$range+1;
        header("HTTP/1.1 206 Partial Content");
        header("Content-Length: $new_length");
        header("Content-Range: bytes $range-$range_end/$size");
    } else {
        $new_length=$size;
        header("Content-Length: ".$size);
    }

    $chunksize = 1*(1024*1024);
    $bytes_send = 0;
    if ($file = fopen($file, 'r'))
    {
        if(isset($_SERVER['HTTP_RANGE']))
        fseek($file, $range);

        while(!feof($file) &&
            (!connection_aborted()) &&
            ($bytes_send<$new_length)
        )
        {
            $buffer = fread($file, $chunksize);
            echo($buffer);
            flush();
            $bytes_send += strlen($buffer);
        }
        fclose($file);
    } else
        die('Error - can not open file.');
    die();
}
set_time_limit(0);

/*set your folder*/
$file_path='uploads/'."your file";

/*output must be folder/yourfile*/

output_file($file_path, ''."your file".'', $row['type']);

/*back to index.php while downloading*/
header('Location:index.php');
?>

2
你从哪里得到的?似乎功能强大
Axel

@ jundell-agbo有趣,是否需要crt文件?
fralbo

这也适用于很大的文件。很好的解决方案。但是`$ chunksize = 1 *(1024 * 1024);`很慢。我尝试了多个值,并注意到`$ chunksize = 8 *(1024 * 1024);`正在使用所有可用带宽。
林加

16

如果必须下载大于允许的内存限制(memory_limitini设置)的文件,这将导致PHP Fatal error: Allowed memory size of 5242880 bytes exhausted错误,则可以执行以下操作:

// File to download.
$file = '/path/to/file';

// Maximum size of chunks (in bytes).
$maxRead = 1 * 1024 * 1024; // 1MB

// Give a nice name to your download.
$fileName = 'download_file.txt';

// Open a file in read mode.
$fh = fopen($file, 'r');

// These headers will force download on browser,
// and set the custom file name for the download, respectively.
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $fileName . '"');

// Run this until we have read the whole file.
// feof (eof means "end of file") returns `true` when the handler
// has reached the end of file.
while (!feof($fh)) {
    // Read and output the next chunk.
    echo fread($fh, $maxRead);

    // Flush the output buffer to free memory.
    ob_flush();
}

// Exit to make sure not to output anything else.
exit;

我只是试过了,它杀死了我的服务器。在我的日志中写入了大量错误。
丹尼尔·威廉姆斯

了解日志的内容将很有用。
帕奇扎尔

是的,对不起,该日志文件太大了,我只需要轻按一下就可以了,所以我没看到。
丹尼尔·威廉姆斯

我不得不在访问权限非常有限的服务器上设置类似的内容。我的下载脚本一直重定向到主页,我不知道为什么。现在我知道问题是内存错误,此代码已解决。
加文

如果仅使用ob_flush()它,可能会出现错误:ob_flush():无法刷新缓冲区。没有要刷新的缓冲区。用if (ob_get_level() > 0) {ob_flush();}(Reference stackoverflow.com/a/9182133/128761)环绕它
vee

11

对上面接受的答案的修改,它还可以在运行时检测MIME类型:

$finfo = finfo_open(FILEINFO_MIME_TYPE);
header('Content-Type: '.finfo_file($finfo, $path));

$finfo = finfo_open(FILEINFO_MIME_ENCODING);
header('Content-Transfer-Encoding: '.finfo_file($finfo, $path)); 

header('Content-disposition: attachment; filename="'.basename($path).'"'); 
readfile($path); // do the double-download-dance (dirty but worky)

4

以下代码是在php中实现下载服务的正确方法,如以下教程所述

header('Content-Type: application/zip');
header("Content-Disposition: attachment; filename=\"$file_name\"");
set_time_limit(0);
$file = @fopen($filePath, "rb");
while(!feof($file)) {
    print(@fread($file, 1024*8));
    ob_flush();
    flush();
}

1
此代码中有两个变量:file_namefilePath。不太好的编码习惯。特别是没有解释。链接到外部教程无济于事。
纳姆

2

试试这个:

header('Content-type: audio/mp3'); 
header('Content-disposition: attachment; 
filename=“'.$trackname'”');                             
readfile('folder name /'.$trackname);          
exit();


1

您也可以流式下载,这将大大减少资源消耗。例:

$readableStream = fopen('test.zip', 'rb');
$writableStream = fopen('php://output', 'wb');

header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="test.zip"');
stream_copy_to_stream($readableStream, $writableStream);
ob_flush();
flush();

在上面的示例中,我正在下载一个test.zip(实际上是本地计算机上的android studio zip)。php:// output是只写流(通常由echo或print使用)。之后,您只需要设置所需的标头并调用stream_copy_to_stream(源,目标)即可。stream_copy_to_stream()方法充当管道,该管道从源流(读取流)获取输入并将其通过管道传输到目标流(写入流),并且还避免了内存耗尽的问题,因此您实际上可以下载更大的文件比起您的PHP memory_limit


您下载流媒体是什么意思?
帕萨·雅兹达尼(Pasa Yazdani)

1
@ParsaYazdani这意味着下载的数据将被分块。请查看流的概念以获取更多详细信息。注意:这不是唯一的PHP流(批量)下载文件。但这无疑是最简单的方法之一。
Saud Qureshi

0

我上面的答案有效。但是,我想提供一种有关如何使用GET执行该方法的方法

在您的html / php页面上

$File = 'some/dir/file.jpg';
<a href="<?php echo '../sumdir/download.php?f='.$File; ?>" target="_blank">Download</a>

download.php包含

$file = $_GET['f']; 

header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

$ext = pathinfo($file, PATHINFO_EXTENSION);
$basename = pathinfo($file, PATHINFO_BASENAME);

header("Content-type: application/".$ext);
header('Content-length: '.filesize($file));
header("Content-Disposition: attachment; filename=\"$basename\"");
ob_clean(); 
flush();
readfile($file);
exit;

这适用于任何文件类型。尚未使用POST测试此功能,但可以正常使用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.