我正在尝试计算每次下载的总带宽使用量。
例如,如果我向用户发送一个 100 mb 的文件,并且用户在中途断开/停止下载,那么实际上只使用了 50 mb。有没有办法跟踪这个?
我在一个教程和一个关于 sof 的问题中找到了这个例子。
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);
和