3v4l.org

run code in 300+ PHP versions simultaneously
<?php $rgData = [ [ 'account_id' => 9, 'entered' => 2 ], [ 'account_id' => 9, 'entered' => 3 ], [ 'account_id' => 9, 'entered' => 1 ] ]; //desc sort: usort($rgData, function($rgX, $rgY) { return $rgX['entered']>$rgY['entered']?-1:$rgX['entered']!=$rgY['entered']; }); var_dump($rgData);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: usort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in /in/qb9BB on line 17 array(3) { [0]=> array(2) { ["account_id"]=> int(9) ["entered"]=> int(3) } [1]=> array(2) { ["account_id"]=> int(9) ["entered"]=> int(2) } [2]=> array(2) { ["account_id"]=> int(9) ["entered"]=> int(1) } }

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