3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* $shoppingList = array('wine ', 'fish', 'bread', 'grapes', 'cheese'); foreach ($shoppingList as $item) { # echo $item . "\n"; $cool = $item . " is good\t"; $fun ="\t"; echo $fun . $cool; } echo implode($shoppingList, "\n"); */ $yoShit = array('wine ', 'fish', 'bread', 'grapes', 'cheese'); foreach ($yoShit as &$shit) { $shit = "$shit is good"; } echo implode("\n",$yoShit);
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
wine is good fish is good bread is good grapes is good cheese is good

preferences:
218.11 ms | 404 KiB | 292 Q