3v4l.org

run code in 300+ PHP versions simultaneously
<?php $books["978-0743261690"] = "Gilgamesh"; $books["978-0060931957"] = "The Odyssey"; $books["978-0192840509"] = "Aesop's Fables"; $books["978-0520227040"] = "Mahabharta"; $books["978-0393320978"] = "Beowulf"; ?><html> <head> <title>Five Great Books</title> </head> <body> <h1>Five Great Books</h1> <ul> <?php foreach($books as $book) { ?> <li><?php echo $book[key]; ?></li> <?php } ?> </ul> </body> </html>
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
<html> <head> <title>Five Great Books</title> </head> <body> <h1>Five Great Books</h1> <ul> <li> Fatal error: Uncaught Error: Undefined constant "key" in /in/Q6PAe:17 Stack trace: #0 {main} thrown in /in/Q6PAe on line 17
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
<html> <head> <title>Five Great Books</title> </head> <body> <h1>Five Great Books</h1> <ul> <li> Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 G</li> <li> Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 T</li> <li> Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 A</li> <li> Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 M</li> <li> Warning: Use of undefined constant key - assumed 'key' (this will throw an Error in a future version of PHP) in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 B</li> </ul> </body> </html>
Output for 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
<html> <head> <title>Five Great Books</title> </head> <body> <h1>Five Great Books</h1> <ul> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 G</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 T</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 A</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 M</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 Warning: Illegal string offset 'key' in /in/Q6PAe on line 17 B</li> </ul> </body> </html>
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
<html> <head> <title>Five Great Books</title> </head> <body> <h1>Five Great Books</h1> <ul> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 G</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 T</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 A</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 M</li> <li> Notice: Use of undefined constant key - assumed 'key' in /in/Q6PAe on line 17 B</li> </ul> </body> </html>

preferences:
241.55 ms | 404 KiB | 313 Q