3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_partition($array, $callback, $recursive = true) { $ret = array (); $walk = ($recursive) ? 'array_walk_recursive' : 'array_walk'; $walk ( $array, function ($value, $key) use($callback, &$ret) { $index = call_user_func_array ( $callback, array ( $value, $key ) ); if (isset ( $ret [$index] )) $ret [$index] [] = $value; else $ret [$index] = array ( $value ); } ); return $ret; } $p1 = (object) array('a'=>1,'b'=>2); $p2 = (object) array('a'=>1,'b'=>3); $p3 = (object) array('a'=>2,'b'=>4); $posts[] = $p1; $posts[] = $p2; $posts[] = $p3; $posts = array_partition($posts, function ($post, $i) { return $post->a; }, false); print_r($posts); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [1] => Array ( [0] => stdClass Object ( [a] => 1 [b] => 2 ) [1] => stdClass Object ( [a] => 1 [b] => 3 ) ) [2] => Array ( [0] => stdClass Object ( [a] => 2 [b] => 4 ) ) )

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:
119.14 ms | 402 KiB | 8 Q