3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = 1111111.505; $round = round($a, 2); echo "round: " . $round . "\n"; $sprintf = sprintf('%01.2F', $a); echo "sprintf: " . $sprintf . "\n"; echo bcmul($round, 100). "\n"; echo "round * 100: " . $round . "\n"; echo bcmul($sprintf, 100). "\n"; echo "sprintf * 100: " . $sprintf . "\n";
Output for 5.3.0 - 5.3.29, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
round: 1111111.51 sprintf: 1111111.50 111111151 round * 100: 1111111.51 111111150 sprintf * 100: 1111111.50
Output for 7.3.32 - 7.3.33, 7.4.33, 8.0.13
round: 1111111.51 sprintf: 1111111.50 Fatal error: Uncaught Error: Call to undefined function bcmul() in /in/GMj8E:9 Stack trace: #0 {main} thrown in /in/GMj8E on line 9
Process exited with code 255.
Output for 5.4.0 - 5.4.45
round: 1111111.51 sprintf: 1111111.50 Fatal error: Call to undefined function bcmul() in /in/GMj8E on line 9
Process exited with code 255.
Output for 4.3.10 - 4.3.11, 4.4.0 - 4.4.9, 5.0.3 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
round: 1111111.5 sprintf: 1111111.50 111111150 round * 100: 1111111.5 111111150 sprintf * 100: 1111111.50
Output for 4.3.2 - 4.3.9, 5.0.0 - 5.0.2
round: 1111111.5 sprintf: 111111150 round * 100: 1111111.5 0 sprintf * 100:
Output for 4.3.0 - 4.3.1
round: 1111111.5 sprintf: 111111100 round * 100: 1111111.5 0 sprintf * 100:

preferences:
309.4 ms | 401 KiB | 460 Q