Home  >  Article  >  Backend Development  >  PHP 强制下载文件代码_PHP

PHP 强制下载文件代码_PHP

WBOY
WBOYOriginal
2016-06-01 12:17:45801browse
复制代码 代码如下:
$filename = '1.png';
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn