http://ww">
输入banner图图片脚本导航/分类

PHP强制下载文件代码_PHP教程

代码如下:

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/322500.htmlTechArticle 代码如下:

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