Help for this page

Select Code to Download


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