Created
October 6, 2012 08:19
-
-
Save sineld/3844383 to your computer and use it in GitHub Desktop.
Php: while
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 | |
| $family = array('Sinan', 'Bilge', 'Tuana Şeyma'); | |
| $size = sizeof($family); | |
| $i = 0; | |
| while($size--) | |
| { | |
| echo $family[$i].', '; | |
| $i++; | |
| } | |
| // Output: Sinan, Bilge, Tuana Şeyma, | |
| $family = array_reverse(array('Sinan', 'Bilge', 'Tuana Şeyma')); | |
| $size = sizeof($family); | |
| while($size--) | |
| { | |
| echo $family[$size].', '; | |
| } | |
| // Output: Sinan, Bilge, Tuana Şeyma, | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment