3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = []; $o = new stdclass(); $o->id = 11591; $o->title = 'abc'; $arr[3] = $o; $o = new stdclass(); $o->id = 11592; $o->title = 'xyz'; $arr[2] = $o; $o = new stdclass(); $o->id = 11589; $o->title = 'abg'; $arr[0] = $o; $o = new stdclass(); $o->id = 11590; $o->title = 'asw'; $arr[1] = $o; ksort($arr); print_r($arr);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => stdClass Object ( [id] => 11589 [title] => abg ) [1] => stdClass Object ( [id] => 11590 [title] => asw ) [2] => stdClass Object ( [id] => 11592 [title] => xyz ) [3] => stdClass Object ( [id] => 11591 [title] => abc ) )

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:
26.66 ms | 406 KiB | 5 Q