Skip to content

Instantly share code, notes, and snippets.

@wouerner
Last active December 25, 2015 07:19
Show Gist options
  • Save wouerner/6938739 to your computer and use it in GitHub Desktop.
Save wouerner/6938739 to your computer and use it in GitHub Desktop.
praticas no foreach.
<?php
//pratica 01
foreach ( $pessoas as $p ){
echo $p;
}
//pratica 02
foreach ( $pessoas as $pessoa ){
echo $pessoa;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment