php下载远程大文件(获取远程文件大小)的实例

废话不多说,直接上代码

rush:PHP;"> PHP // 暂不支持断点续传 // $url = 'http://www.mytest.com/debian.iso'; 不知道为何获取本地文件大小为0 $url = 'http://192.168.8.93/download/vm-672/18/0.vmdk'; $file = basename($url); $header = get_headers($url,1); $size = $header['Content-Length'];

$fp = fopen($url,'rb');
if ($fp === false) exit('文件不存在或打开失败');

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-disposition: attachment; filename="'.$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: ' . $size);

ob_clean();
ob_end_flush();
set_time_limit(0);

$chunkSize = 1024 * 1024;
while (!feof($fp)) {
$buffer = fread($fp,$chunkSize);
echo $buffer;
ob_flush();
flush();
}
fclose($fp);
exit;

以上这篇PHP下载远程大文件(获取远程文件大小)的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...