php 强制下载文件实现代码
时间:2021-09-03 09:18:12|栏目:PHP代码|点击: 次
复制代码 代码如下:
<?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批量生成随机用户名
栏 目:PHP代码
下一篇:浅谈ThinkPHP的URL重写
本文标题:php 强制下载文件实现代码
本文地址:http://www.codeinn.net/misctech/172078.html