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 5.5.0 - 5.5.35, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.6 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
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 ) ) )

preferences:
208.93 ms | 405 KiB | 242 Q