3v4l.org

run code in 300+ PHP versions simultaneously
<?php $objs = [ ['value'=>2, 'key'=>'a'], ['value'=>3, 'key'=>'b'] ]; print_r($objs); $keys = array_column($objs, 'key'); $index = array_search('a', $keys); if ($index !== false) { $objs[$index]['value'] = 5; } print_r($objs);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [value] => 2 [key] => a ) [1] => Array ( [value] => 3 [key] => b ) ) Array ( [0] => Array ( [value] => 5 [key] => a ) [1] => Array ( [value] => 3 [key] => b ) )

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:
30.31 ms | 406 KiB | 5 Q