Skip to content

Instantly share code, notes, and snippets.

@OMGZui
Last active June 27, 2022 08:00
Show Gist options
  • Save OMGZui/a967a4ad50fa3e1bbc201a0da0c0e96b to your computer and use it in GitHub Desktop.
Save OMGZui/a967a4ad50fa3e1bbc201a0da0c0e96b to your computer and use it in GitHub Desktop.
// A
$count = 0;
while ($count < 10) {
// ...
$count++;
}
// B
$count = 0;
while (++$count < 10) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment