3v4l.org

run code in 300+ PHP versions simultaneously
<?php function roundUp($number){ $int = floor($number); $float = $number-$int; if ($float*10 < 2.5) $result = $int; else $result = ceil($number); $result+= 0.25; echo $number." becomes ".$result."\n"; } roundUp(25.50); roundUp(25.10);
Output for git.master, git.master_jit, rfc.property-hooks
25.5 becomes 26.25 25.1 becomes 25.25

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
116.49 ms | 405 KiB | 5 Q