新秀B2C商城系统是一款简洁易用PHP商城系统。可免费下载使用,可用于商业用途,没有时效限制,除版权标识外,所有代码都允许修改。后台功能简介:1、商城设置:基本信息,配送方式,配送范围,支付方式,财务管理;2、商品管理:商品列表,添加商品,商品分类,商品品牌,商品属性;3、订单管理:订单列表,缺货登记;4、用户互动:用户管理,留言管理,评论管理,网站公告,在线客服,用户协议;5、文章管理:文章列表
0
/**
* @author default7<default7@zbphp.com>
* @description 演示PHP弹出下载的原理
*
* @param $file_name
*/
function downFile($file_name)
{
$file_path = "/tmp/" . $file_name;
$buffer = 102400; //一次返回102400个字节
if (!file_exists($file_path)) {
echo "<script type='text/javascript'> alert('对不起!该文件不存在或已被删除!'); </script>";
return;
}
$fp = fopen($file_path, "r");
$file_size = filesize($file_path);
$file_data = '';
while (!feof($fp)) {
$file_data .= fread($fp, $buffer);
}
fclose($fp);
//Begin writing headers
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-type:application/octet-stream;");
header("Accept-Ranges:bytes");
header("Accept-Length:{$file_size}");
header("Content-Disposition:attachment; filename={$file_name}");
header("Content-Transfer-Encoding: binary");
echo $file_data;
}
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号