要在链接访问时自动启动文件下载,可以使用 PHP 代码。
实现该功能的PHP代码包括:
header("Content-Disposition: attachment; filename=\"" . basename($File) . "\""); header("Content-Type: application/octet-stream"); header("Content-Length: " . filesize($File)); header("Connection: close");
这段代码snippet 在输出文件之前将标头发送到客户端。这些标头指示浏览器:
以上是PHP 如何启动自动文件下载?的详细内容。更多信息请关注PHP中文网其他相关文章!