PHP Code:


<?php
$array = array(1, 2, 3, 4, 5);

foreach($array as $key => $value) {
	echo "key = $key and value = $value <br />";
}
?>

Output: