"/>
PHP头条
热点:

PHP强制下载文件代码


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

www.phpzy.comtrue/php/11113.htmlTechArticlePHP强制下载文件代码 代码如下: $filename = '1.png'; header("Content-Type: application/force-download"); header('Content-Disposition: attachment; filename="'.$filename.'"'); echo $filename; ?>...

相关文章

相关频道:

PHP之友评论

今天推荐