How to Automatically Start a Download in PHP?(如何在 PHP 中自动开始下载?)
问题描述
需要在 PHP 中添加什么代码才能在访问链接时自动让浏览器将文件下载到本地机器?
What code do you need to add in PHP to automatically have the browser download a file to the local machine when a link is visited?
我特别想到了类似于下载站点的功能,一旦您单击软件名称,就会提示用户将文件保存到磁盘?
I am specifically thinking of functionality similar to that of download sites that prompt the user to save a file to disk once you click on the name of the software?
推荐答案
在输出文件前发送以下标题:
Send the following headers before outputting the file:
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 类型很有趣.我不知道,一直只使用应用程序/强制下载":)
@grom: Interesting about the 'application/octet-stream' MIME type. I wasn't aware of that, have always just used 'application/force-download' :)
这篇关于如何在 PHP 中自动开始下载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PHP 中自动开始下载?
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01