3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(); $arr['01'] = 'sdf'; $arr['9'] = 'sdf2'; $arr['10'] = 'sdf3'; $arr['11'] = 'sdf3'; $arr['jj'] = 'sdf3'; $arr2[1] = 'sdf'; $arr2[9] = 'sdf2'; $arr2[10] = 'sdf3'; $arr2[11] = 'sdf3'; $newArray = array_replace(array(""=>""), $arr); $good_array = array(""=>"") + $arr; print_r($newArray); print_r($good_array);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [] => [01] => sdf [9] => sdf2 [10] => sdf3 [11] => sdf3 [jj] => sdf3 ) Array ( [] => [01] => sdf [9] => sdf2 [10] => sdf3 [11] => sdf3 [jj] => sdf3 )

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