<?php $fruits = ["apple", "banana", "cherry"]; foreach ($fruits as $fruit) { echo "I like $fruit\n"; } ?>
Click Run to execute this code.