Last active
December 25, 2015 07:19
-
-
Save wouerner/6938739 to your computer and use it in GitHub Desktop.
praticas no foreach.
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 | |
//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