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 7.1.25 - 7.1.30, 7.2.0 - 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.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
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 ) )

preferences:
152.73 ms | 408 KiB | 5 Q