Source Code:
(back to article)
<?php $fruits = ['apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange']; foreach ($fruits as $key => $value) { echo "Key: $key; Value: $value\n"; }
Result:
Report an issue