Input
Output
<?php $arr = [1, 2, 3, 4, 5]; // Printing array using foreach loop foreach ($arr as $i) { echo $i . "\n"; } ?>