Created
February 17, 2016 04:05
-
-
Save thmsbkkr/b5af47194e6baf132477 to your computer and use it in GitHub Desktop.
This file contains 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
for ($i = 0; $i < 10; i++) { | |
// Do something | |
} | |
// Much better looking | |
foreach (range(0,9) as $i) { | |
// Do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment