//此为下载文件
function download($file_dir,$file_name)
{
$file_dir = chop($file_dir);// remove of the more space
// get the download file
if($file_dir != '')
{
$file_path = $file_dir;
if(substr($file_dir,strlen($file_dir)-1,strlen($file_dir)) != '/')
$file_path .= '/';
$file_path .= $file_name;
}
else
$file_path = $file_name;
// judge the download file exist
if(!file_exists($file_path))
{
echo 'Sorry,the file not exist';
exit;
}
$file_size = filesize($file_path);
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length: $file_size");
header("Content-Disposition: attachment; filename=".$file_name);
$fp = fopen($file_path,"r");
$buffer_size = 1024;
$cur_pos = 0;
while(!feof($fp)&&$file_size-$cur_pos>$buffer_size)
{
$buffer = fread($fp,$buffer_size);
echo $buffer;
$cur_pos += $buffer_size;
}
$buffer = fread($fp,$file_size-$cur_pos);
echo $buffer;
fclose($fp);
}
$file_path = "../data/";
// with the function
if(file_exists($video)){
download($file_path, "atrcd.tar");
}
`sudo /usr/local/asg/www/scripts/www-misc remDownloadFile`; //移除服务器上的压缩文件
7 个解决方案
#1
系统盘是FAT32格式的不支持下载超过4G的文件
#2
啊,linux服务器上有FAT32格式的么
#3
32位的机器吧, 4G是off_t能表示的最大值了,也就是说32位的机器不能操作4G以上的文件。
#4
恩 总之就是文件系统不支持大于4G的文件
ext2也不支持吧
ext2也不支持吧
#5
啊,哪有什么方法可以解决的么???
#6
刚刚问了下,这儿用的是ext3 在编译时扩展到64位了,所以它支持的文件大小为2^63。
#1
系统盘是FAT32格式的不支持下载超过4G的文件
#2
啊,linux服务器上有FAT32格式的么
#3
32位的机器吧, 4G是off_t能表示的最大值了,也就是说32位的机器不能操作4G以上的文件。
#4
恩 总之就是文件系统不支持大于4G的文件
ext2也不支持吧
ext2也不支持吧
#5
啊,哪有什么方法可以解决的么???
#6
刚刚问了下,这儿用的是ext3 在编译时扩展到64位了,所以它支持的文件大小为2^63。
#7
刚刚在网上又搜了下,发下了解决办法
http://bbs.phpchina.com/thread-178853-1-1.html
http://bbs.phpchina.com/thread-178853-1-1.html