Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bepatrickdavid/8d0f8e4994d2e0a72d1dc3150f01ef06 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/8d0f8e4994d2e0a72d1dc3150f01ef06 to your computer and use it in GitHub Desktop.
PHP: Foreach with key / index
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