Skip to content

Instantly share code, notes, and snippets.

@thmsbkkr
Created February 17, 2016 04:05
Show Gist options
  • Save thmsbkkr/b5af47194e6baf132477 to your computer and use it in GitHub Desktop.
Save thmsbkkr/b5af47194e6baf132477 to your computer and use it in GitHub Desktop.
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