php 强制下载文件实例代码

发布时间:2020-11-26编辑:脚本学堂
分享一段php强制下载文件的代码,学习下php中使用header函数实现文件强制下载的方法,有需要的朋友参考下。

本节内容:
php 强制下载文件的实现代码。

例子:
 

复制代码 代码示例:

<?php
/**
* php实现文件强制下载
* edit: www.jb200.com
*/
$file = 'monkey.gif';

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}
 
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=ins.jpg"); 
readfile("imgs/test_Zoom.jpg");
?>