如何在PHP中自动启动下载?

时间:2008-09-03 00:02:42

标签: php automation download

您需要在PHP中添加哪些代码才能在访问链接时自动让浏览器将文件下载到本地计算机?

我特别想到的功能类似于下载网站,提示用户在点击软件名称后将文件保存到磁盘上?

5 个答案:

答案 0 :(得分:55)

在输出文件之前发送以下标题:

header("Content-Disposition: attachment; filename=\"" . basename($File) . "\"");
header("Content-Type: application/octet-stream");
header("Content-Length: " . filesize($File));
header("Connection: close");

@grom:对'application / octet-stream'MIME类型感兴趣。我没有意识到这一点,总是只使用'application / force-download':)

答案 1 :(得分:39)

以下是发回pdf的示例。

header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="' . basename($filename) . '"');
header('Content-Transfer-Encoding: binary');
readfile($filename);

@Swish我没有找到应用程序/强制下载内容类型来做任何不同的事情(在IE和Firefox中测试过)。是否有理由不发回实际的MIME类型?

同样在PHP手册Hayley Watson张贴:

  

如果您希望强制下载和保存文件而不是呈现文件,请记住没有“application / force-download”这样的MIME类型。在这种情况下使用的正确类型是“application / octet-stream”,并且使用其他任何东西仅仅依赖于客户端应该忽略无法识别的MIME类型并使用“application / octet-stream”的事实(参考:章节) RFC 2046的4.1.4和4.5.1。)

同样根据IANA,没有注册的应用程序/强制下载类型。

答案 2 :(得分:10)

一个干净的例子。

<?php
    header('Content-Type: application/download');
    header('Content-Disposition: attachment; filename="example.txt"');
    header("Content-Length: " . filesize("example.txt"));

    $fp = fopen("example.txt", "r");
    fpassthru($fp);
    fclose($fp);
?>

答案 3 :(得分:1)

以上都不适合我!

致力于 2021 年的 WordPress 和 PHP:

<?php
$file = ABSPATH . 'pdf.pdf'; // Where ABSPATH is the absolute server path, not url
//echo $file; //Be sure you are echoing the absolute path and file name
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the end. */

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);

感谢:https://qastack.mx/programming/4679756/show-a-pdf-files-in-users-browser-via-php-perl

答案 4 :(得分:0)

我的代码适用于txt,doc,docx,pdf,ppt,pptx,jpg,png,zip扩展,我认为最好明确使用实际的MIME类型。

$file_name = "a.txt";

// extracting the extension:
$ext = substr($file_name, strpos($file_name,'.')+1);

header('Content-disposition: attachment; filename='.$file_name);

if(strtolower($ext) == "txt")
{
    header('Content-type: text/plain'); // works for txt only
}
else
{
    header('Content-type: application/'.$ext); // works for all extensions except txt
}
readfile($decrypted_file_path);