3v4l.org

run code in 300+ PHP versions simultaneously
<?php $values = array('1201203,00', '123,123.23', '12.23', '10.00', '10'); foreach ($values as &$value) { $value = preg_replace('/[,.]\d{2}$/', '', $value); } print_r($values);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 1201203 [1] => 123,123 [2] => 12 [3] => 10 [4] => 10 )

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