<?php
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".($filename));
readfile($file);
PHP强制浏览器不打开而是下载文件
点赞
收藏
PHP强制浏览器不打开而是下载文件
<?php
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".($filename));
readfile($file);