php如何强制下载文件,php 强制下载文件实例代码
/**
* php實現文件強制下載
* edit: www.jbxue.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");
?>
總結
以上是生活随笔為你收集整理的php如何强制下载文件,php 强制下载文件实例代码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Matlab学习笔记:画图多重设置
- 下一篇: 单核工作法16:循序渐进(下)