3v4l.org

run code in 300+ PHP versions simultaneously
<?php $value = array( array(3075,15,461.25,16,535.05), array(3075,15,461.25808,16,535.05),//to be removed array(3075,15,461.2,16,535.05234)//to be removed ); $value = array_filter($value, function ($v) { foreach ($v as $x) { if (strlen(substr(strrchr($x, "."), 1)) > 2) return false; } return true; }); var_dump($value);
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> array(5) { [0]=> int(3075) [1]=> int(15) [2]=> float(461.25) [3]=> int(16) [4]=> float(535.05) } }

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:
44.63 ms | 401 KiB | 8 Q