- or download this
if ($counter <= 8) {
$sum_values[$x] += $ifSpeeds{ $key };
...
$sum_values[$x] = $ifSpeeds{ $key };
$counter = 1;
}
- or download this
$sum_values[$x] += $ifSpeeds{ $key };
$x++ unless ++$counter % 8;
- or download this
$sum_values[$counter++/8] += $ifSpeeds{ $key }; # the [] impli
+es int(...)