3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = Array ( 0 => '124,95', 1 => '139,95', 2 => '149,95', 3 => '1.200', 4 => '150', 5 => '154,95', 6 => '130', 7 => '189,95', 8 => '199,95', 9 => '30', 10 => '150', 11 => '1.234.567,89' ); $new_array = array_map(function ($v) { return (float)strtr($v, array(',' => '.', '.' => '')); }, $array); echo number_format(min($new_array), 2, ',', '.') . "\n"; echo number_format(max($new_array), 2, ',', '.') . "\n";;
Output for git.master, git.master_jit, rfc.property-hooks
30,00 1.234.567,89

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:
31.82 ms | 405 KiB | 9 Q