Created
August 12, 2016 14:25
-
-
Save bepatrickdavid/8d0f8e4994d2e0a72d1dc3150f01ef06 to your computer and use it in GitHub Desktop.
PHP: Foreach with key / index
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
foreach($array as $key => $item){ | |
echo $key . ":" . $item . "<br>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment