Source Code:
(back to article)
<?php $my_array = [1, 2, 3, 4, 5]; foreach ($my_array as $value) { echo $value . "-"; }
Result:
Report an issue