Source Code:
(back to article)
<?php $array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; foreach ($array as $key => $value) { echo "The index is = " . $key . ", and value is = " . $value; echo "\n"; } ?>
Result:
Report an issue