3v4l.org

run code in 300+ PHP versions simultaneously
<?php $tests = [ 1.25, 2.500, 31, 0.99999999999999 ]; foreach ($tests as $testValue) { $testInt = intval(100 * $testValue); if (($testInt % 100) == 0) { echo "".($testInt / 100)."\n"; } else { printf("%.2f \n", $testValue); } } echo "The last might not be what you want.";
Output for git.master, git.master_jit, rfc.property-hooks
1.25 2.50 31 1.00 The last might not be what you want.

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:
63.18 ms | 405 KiB | 5 Q