3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dataArray = [ 'items' => [ 4 => [ [id] => 4, [name] => 'Test Item 4 Name', [desc] => 'Test Item 4 Desc', ], 5 => [ [id] => 5, [name] => 'Test Item 5 Name', [desc] => 'Test Item 5 Desc', ], 6 => [ [id] => 6, [name] => 'Test Item 6 Name', [desc] => 'Test Item 6 Desc', ] ] ]; var_dump($dataArray); exit;
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "id" in /in/OB3E3:6 Stack trace: #0 {main} thrown in /in/OB3E3 on line 6
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 6 Warning: Illegal offset type in /in/OB3E3 on line 6 Warning: Use of undefined constant name - assumed 'name' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 7 Warning: Illegal offset type in /in/OB3E3 on line 7 Warning: Use of undefined constant desc - assumed 'desc' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 8 Warning: Illegal offset type in /in/OB3E3 on line 8 Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 11 Warning: Illegal offset type in /in/OB3E3 on line 11 Warning: Use of undefined constant name - assumed 'name' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 12 Warning: Illegal offset type in /in/OB3E3 on line 12 Warning: Use of undefined constant desc - assumed 'desc' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 13 Warning: Illegal offset type in /in/OB3E3 on line 13 Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 16 Warning: Illegal offset type in /in/OB3E3 on line 16 Warning: Use of undefined constant name - assumed 'name' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 17 Warning: Illegal offset type in /in/OB3E3 on line 17 Warning: Use of undefined constant desc - assumed 'desc' (this will throw an Error in a future version of PHP) in /in/OB3E3 on line 18 Warning: Illegal offset type in /in/OB3E3 on line 18 array(1) { ["items"]=> array(3) { [4]=> array(0) { } [5]=> array(0) { } [6]=> array(0) { } } }
Output for 5.4.2 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Use of undefined constant id - assumed 'id' in /in/OB3E3 on line 6 Warning: Illegal offset type in /in/OB3E3 on line 6 Notice: Use of undefined constant name - assumed 'name' in /in/OB3E3 on line 7 Warning: Illegal offset type in /in/OB3E3 on line 7 Notice: Use of undefined constant desc - assumed 'desc' in /in/OB3E3 on line 8 Warning: Illegal offset type in /in/OB3E3 on line 8 Notice: Use of undefined constant id - assumed 'id' in /in/OB3E3 on line 11 Warning: Illegal offset type in /in/OB3E3 on line 11 Notice: Use of undefined constant name - assumed 'name' in /in/OB3E3 on line 12 Warning: Illegal offset type in /in/OB3E3 on line 12 Notice: Use of undefined constant desc - assumed 'desc' in /in/OB3E3 on line 13 Warning: Illegal offset type in /in/OB3E3 on line 13 Notice: Use of undefined constant id - assumed 'id' in /in/OB3E3 on line 16 Warning: Illegal offset type in /in/OB3E3 on line 16 Notice: Use of undefined constant name - assumed 'name' in /in/OB3E3 on line 17 Warning: Illegal offset type in /in/OB3E3 on line 17 Notice: Use of undefined constant desc - assumed 'desc' in /in/OB3E3 on line 18 Warning: Illegal offset type in /in/OB3E3 on line 18 array(1) { ["items"]=> array(3) { [4]=> array(0) { } [5]=> array(0) { } [6]=> array(0) { } } }

preferences:
204.21 ms | 405 KiB | 228 Q