PHP 强制下载文件代码_PHP
程序员文章站
2022-04-09 10:16:40
...
复制代码 代码如下:
$filename = '1.png';
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?>
$filename = '1.png';
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?>
上一篇: php+redis实现抢购功能
下一篇: php实现处理XML数据的方法