3v4l.org

run code in 300+ PHP versions simultaneously
<?php $numbers = array( 1234, 1234.0, 1234.05, 1234.005, 1234.5, 1234.50, 1234.55, 1234.505, 1234.555, 1234.5000, 1234.5500, 1234.5550, 1234.5555, 3, 3.0, 3.05, 3.5, 3.50, 3.55, 3.550, 3.555, 3.5550, 3.5555, 5.49, 5.255, 5.249, 5.244, 2.245, ); function format_to_komma_ruggit($number) { $number = round($number); $number = number_format($number, strlen(substr(strrchr($number, "."), 1)), ',', '.'); return $number; } foreach ($numbers as $number) { echo (float)$number . ' => ' . format_to_komma_ruggit($number); echo PHP_EOL; }
Output for git.master, git.master_jit, rfc.property-hooks
1234 => 1.234 1234 => 1.234 1234.05 => 1.234 1234.005 => 1.234 1234.5 => 1.235 1234.5 => 1.235 1234.55 => 1.235 1234.505 => 1.235 1234.555 => 1.235 1234.5 => 1.235 1234.55 => 1.235 1234.555 => 1.235 1234.5555 => 1.235 3 => 3 3 => 3 3.05 => 3 3.5 => 4 3.5 => 4 3.55 => 4 3.55 => 4 3.555 => 4 3.555 => 4 3.5555 => 4 5.49 => 5 5.255 => 5 5.249 => 5 5.244 => 5 2.245 => 2

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:
34.07 ms | 402 KiB | 8 Q