3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = Array ( 0 => Array ( 'user_id' => 10, 'id' => 1, 'Number' => 3, 'Active' => 1, 'Updated' => '2010-03-17 15:44:12', ), 1 => Array ( 'user_id' => 9, 'id' => 2, 'Number' => 2, 'Active' => 1, 'Updated' => '2010-03-17 15:44:12', ), 2 => Array ( 'user_id' => 8, 'id' => 3, 'Number' => 1, 'Active' => 1, 'Updated' => '2010-03-17 15:44:12', ) ); array_multisort(array_map(function($element) { return $element['user_id']; }, $array), SORT_ASC, $array); print_r($array);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [user_id] => 8 [id] => 3 [Number] => 1 [Active] => 1 [Updated] => 2010-03-17 15:44:12 ) [1] => Array ( [user_id] => 9 [id] => 2 [Number] => 2 [Active] => 1 [Updated] => 2010-03-17 15:44:12 ) [2] => Array ( [user_id] => 10 [id] => 1 [Number] => 3 [Active] => 1 [Updated] => 2010-03-17 15:44:12 ) )

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:
32.02 ms | 407 KiB | 5 Q