gpt4 book ai didi

php - 如何在 PHP 中自动开始下载?

转载 作者:IT王子 更新时间:2023-10-29 00:48:15 25 4
gpt4 key购买 nike

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

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

最佳答案

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

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 类型很感兴趣。我不知道,一直只使用“应用程序/强制下载”:)

关于php - 如何在 PHP 中自动开始下载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com