网络编程 
首页 > 网络编程 > 浏览文章

php 强制下载文件实现代码

(编辑:jimmy 日期: 2025/3/14 浏览:3 次 )
复制代码 代码如下:
<?php
$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;
}
?>
?
<?php
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=ins.jpg"); 
readfile("imgs/test_Zoom.jpg");
?>
上一篇:php session_start()出错原因分析及解决方法
下一篇:php获取qq用户昵称和在线状态(实例分析)