Copy code The code is as follows:
$filename = '1.png';
header( "Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?> ;
http://www.bkjia.com/PHPjc/322500.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322500.htmlTechArticleCopy the code as follows: ?php $filename = '1.png'; header("Content-Type: application /force-download"); header('Content-Disposition: attachment; filename="'.$filename.'"'); echo $...