fork download
  1. <?php
  2. $tests = array(131.505, 131.515, 131.525, 131.535, 131.545, 131.555, 131.565, 131.575, 131.585, 131.595);
  3. foreach($tests as $n) {
  4. echo $n, " => ", round($n, 2, PHP_ROUND_HALF_EVEN), PHP_EOL;
  5. }
  6.  
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
131.505 => 131.5
131.515 => 131.52
131.525 => 131.52
131.535 => 131.54
131.545 => 131.54
131.555 => 131.56
131.565 => 131.56
131.575 => 131.58
131.585 => 131.58
131.595 => 131.6