3v4l.org

run code in 300+ PHP versions simultaneously
<?php $opel= array( key => "vectra", key2 => 1999, key3 => 4, key4 => "green", ); $dodge= array( key => "DODGE CHALLENGER GT ALL-WHEEL DRIVE", key2 => 2017, key3 => 2, key4 => "rad", ); $mercmaybach= array( key => "Mercedes-Maybach S600", key2 => 2017, key3 => 4, key4 => "black" ); $arr=array($opel,$dodge,$mercmaybach); foreach ($arr as $value) { print_r($value); echo"<br>"; } ?>
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.4, 8.3.6
Fatal error: Uncaught Error: Undefined constant "key" in /in/VILgt:3 Stack trace: #0 {main} thrown in /in/VILgt on line 3
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught Error: Undefined constant "key" in /in/VILgt:3 Stack trace: #0 {main} thrown in /in/VILgt on line 3
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/VILgt on line 3 Warning: Use of undefined constant key2 - assumed 'key2' (this will throw an Error in a future version of PHP) in /in/VILgt on line 4 Warning: Use of undefined constant key3 - assumed 'key3' (this will throw an Error in a future version of PHP) in /in/VILgt on line 5 Warning: Use of undefined constant key4 - assumed 'key4' (this will throw an Error in a future version of PHP) in /in/VILgt on line 6 Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/VILgt on line 9 Warning: Use of undefined constant key2 - assumed 'key2' (this will throw an Error in a future version of PHP) in /in/VILgt on line 10 Warning: Use of undefined constant key3 - assumed 'key3' (this will throw an Error in a future version of PHP) in /in/VILgt on line 11 Warning: Use of undefined constant key4 - assumed 'key4' (this will throw an Error in a future version of PHP) in /in/VILgt on line 12 Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/VILgt on line 15 Warning: Use of undefined constant key2 - assumed 'key2' (this will throw an Error in a future version of PHP) in /in/VILgt on line 16 Warning: Use of undefined constant key3 - assumed 'key3' (this will throw an Error in a future version of PHP) in /in/VILgt on line 17 Warning: Use of undefined constant key4 - assumed 'key4' (this will throw an Error in a future version of PHP) in /in/VILgt on line 18 Array ( [key] => vectra [key2] => 1999 [key3] => 4 [key4] => green ) <br>Array ( [key] => DODGE CHALLENGER GT ALL-WHEEL DRIVE [key2] => 2017 [key3] => 2 [key4] => rad ) <br>Array ( [key] => Mercedes-Maybach S600 [key2] => 2017 [key3] => 4 [key4] => black ) <br>
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33
Notice: Use of undefined constant key - assumed 'key' in /in/VILgt on line 3 Notice: Use of undefined constant key2 - assumed 'key2' in /in/VILgt on line 4 Notice: Use of undefined constant key3 - assumed 'key3' in /in/VILgt on line 5 Notice: Use of undefined constant key4 - assumed 'key4' in /in/VILgt on line 6 Notice: Use of undefined constant key - assumed 'key' in /in/VILgt on line 9 Notice: Use of undefined constant key2 - assumed 'key2' in /in/VILgt on line 10 Notice: Use of undefined constant key3 - assumed 'key3' in /in/VILgt on line 11 Notice: Use of undefined constant key4 - assumed 'key4' in /in/VILgt on line 12 Notice: Use of undefined constant key - assumed 'key' in /in/VILgt on line 15 Notice: Use of undefined constant key2 - assumed 'key2' in /in/VILgt on line 16 Notice: Use of undefined constant key3 - assumed 'key3' in /in/VILgt on line 17 Notice: Use of undefined constant key4 - assumed 'key4' in /in/VILgt on line 18 Array ( [key] => vectra [key2] => 1999 [key3] => 4 [key4] => green ) <br>Array ( [key] => DODGE CHALLENGER GT ALL-WHEEL DRIVE [key2] => 2017 [key3] => 2 [key4] => rad ) <br>Array ( [key] => Mercedes-Maybach S600 [key2] => 2017 [key3] => 4 [key4] => black ) <br>

preferences:
208.66 ms | 404 KiB | 204 Q