我正在尝试计算每次下载的总带宽使用量。
例如,如果我向用户发送一个100 MB的文件,并且用户断开/停止下载中途,那么实际上只使用了50 MB。有没有办法跟踪这个?
我在教程和问题上找到了这个例子。
if ($fd = fopen ($fullPath, "r")) {
//the next part outputs the file
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
header("Content-type: application/octet-stream");
header("Content-Disposition: filename=".$path_parts["basename"]."");
header("Content-length: $fsize");
header("Cache-control: private"); //use this to open files directly
while(!feof($fd)) {
$buffer = fread($fd, 2048);
echo $buffer;
}
}
fclose ($fd);
和