Statement Php

$dinner = array('A',
                'B',
                'C');
foreach ($dinner as $dish) {
    print "You can eat: $dish\n";
}
?>