3v4l.org

run code in 300+ PHP versions simultaneously
<?php // List of places to eat $places = array("Italian restaurant", "Mexican restaurant", "Chinese restaurant", "Japanese restaurant", "Indian restaurant"); // Pick a random place $place = $places[array_rand($places)]; // Print the chosen place echo "Let's go to the $place!";
Output for 8.0.8, 8.0.11 - 8.0.12, 8.0.20, 8.1.1, 8.1.3, 8.1.11, 8.1.13
Let's go to the Japanese restaurant!
Output for 8.0.5 - 8.0.6, 8.0.17 - 8.0.19, 8.0.25, 8.1.0, 8.1.5, 8.1.12
Let's go to the Chinese restaurant!
Output for 8.0.1, 8.0.9, 8.0.21, 8.0.24, 8.1.4, 8.1.7, 8.1.10
Let's go to the Italian restaurant!
Output for 8.0.2 - 8.0.3, 8.0.7, 8.0.14, 8.0.22, 8.1.8 - 8.1.9
Let's go to the Indian restaurant!
Output for 8.0.10, 8.0.13, 8.0.15 - 8.0.16, 8.0.23, 8.0.26, 8.1.2, 8.1.6
Let's go to the Mexican restaurant!

preferences:
68.39 ms | 402 KiB | 44 Q