Created
September 16, 2018 07:41
-
-
Save gnilchee/3ff4b476ee2700b00fe13d075310f74d to your computer and use it in GitHub Desktop.
foreach example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$array = array( | |
'fruit1' => 'apple', | |
'fruit2' => 'orange', | |
'fruit3' => 'grape', | |
'fruit4' => 'mango', | |
'fruit5' => 'peach'); | |
echo $array['fruit3']; | |
echo "\n"; | |
foreach ($array as $v) { | |
echo "\$array: $v\n"; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment