当前位置:Gxlcms > PHP基础 > PHP 强制下载文件代码

PHP 强制下载文件代码

时间:2021-07-01 10:21:17 帮助过:43人阅读

代码如下:

<?php
$filename = '1.png';
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?>

人气教程排行