3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ 2 => (object)['title' => 'Section', 'linked' => 1], 1 => (object)['title' => 'Sub-Section', 'linked' => 1], 0 => (object)['title' => 'Sub-Sub-Section', 'linked' => null] ]; var_export(array_combine(range(1, count($array)), $array));
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
array ( 1 => (object) array( 'title' => 'Section', 'linked' => 1, ), 2 => (object) array( 'title' => 'Sub-Section', 'linked' => 1, ), 3 => (object) array( 'title' => 'Sub-Sub-Section', 'linked' => NULL, ), )
Output for 7.2.0 - 7.2.33
array ( 1 => stdClass::__set_state(array( 'title' => 'Section', 'linked' => 1, )), 2 => stdClass::__set_state(array( 'title' => 'Sub-Section', 'linked' => 1, )), 3 => stdClass::__set_state(array( 'title' => 'Sub-Sub-Section', 'linked' => NULL, )), )

preferences:
114.63 ms | 1525 KiB | 4 Q