3v4l.org

run code in 300+ PHP versions simultaneously
<?php function _object_to_array_batch($object) { return $object; } function set_insert_batch($key) { $key = _object_to_array_batch($key); var_dump(current($key)); } function insert_batch($object) { set_insert_batch($object); } function test_walk() { $foo = [ ['a' => 'hao', 'language' =>'US'], ['a' => 'buhao', 'language' =>'CN'], ]; array_walk($foo, function(&$item, $key, $parent_id) {$item['parent_id'] = $parent_id;}, 123); var_dump(current($foo)); insert_batch($foo); } test_walk();
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { ["a"]=> string(3) "hao" ["language"]=> string(2) "US" ["parent_id"]=> int(123) } array(3) { ["a"]=> string(3) "hao" ["language"]=> string(2) "US" ["parent_id"]=> int(123) }

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