3v4l.org

run code in 300+ PHP versions simultaneously
<?php $shop = array( array( Title => "rose", Price => 1.25, Number => 15 ), array( Title => "daisy", Price => 0.75, Number => 25, ), array( Title => "orchid", Price => 1.15, Number => 7 ) ); print_r($shop);
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 "Title" in /in/qnE75:2 Stack trace: #0 {main} thrown in /in/qnE75 on line 2
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 Title - assumed 'Title' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 2 Warning: Use of undefined constant Price - assumed 'Price' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 3 Warning: Use of undefined constant Number - assumed 'Number' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 4 Warning: Use of undefined constant Title - assumed 'Title' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 6 Warning: Use of undefined constant Price - assumed 'Price' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 7 Warning: Use of undefined constant Number - assumed 'Number' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 8 Warning: Use of undefined constant Title - assumed 'Title' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 10 Warning: Use of undefined constant Price - assumed 'Price' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 11 Warning: Use of undefined constant Number - assumed 'Number' (this will throw an Error in a future version of PHP) in /in/qnE75 on line 12 Array ( [0] => Array ( [Title] => rose [Price] => 1.25 [Number] => 15 ) [1] => Array ( [Title] => daisy [Price] => 0.75 [Number] => 25 ) [2] => Array ( [Title] => orchid [Price] => 1.15 [Number] => 7 ) )
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Use of undefined constant Title - assumed 'Title' in /in/qnE75 on line 2 Notice: Use of undefined constant Price - assumed 'Price' in /in/qnE75 on line 3 Notice: Use of undefined constant Number - assumed 'Number' in /in/qnE75 on line 4 Notice: Use of undefined constant Title - assumed 'Title' in /in/qnE75 on line 6 Notice: Use of undefined constant Price - assumed 'Price' in /in/qnE75 on line 7 Notice: Use of undefined constant Number - assumed 'Number' in /in/qnE75 on line 8 Notice: Use of undefined constant Title - assumed 'Title' in /in/qnE75 on line 10 Notice: Use of undefined constant Price - assumed 'Price' in /in/qnE75 on line 11 Notice: Use of undefined constant Number - assumed 'Number' in /in/qnE75 on line 12 Array ( [0] => Array ( [Title] => rose [Price] => 1.25 [Number] => 15 ) [1] => Array ( [Title] => daisy [Price] => 0.75 [Number] => 25 ) [2] => Array ( [Title] => orchid [Price] => 1.15 [Number] => 7 ) )

preferences:
261.43 ms | 406 KiB | 311 Q