Skip to content

Instantly share code, notes, and snippets.

@amcgowanca
Created October 4, 2013 15:19
Show Gist options
  • Save amcgowanca/6827696 to your computer and use it in GitHub Desktop.
Save amcgowanca/6827696 to your computer and use it in GitHub Desktop.
PHP's break; with numeric indicator of number of scope structures to break.
<?php
do {
for ($i = 0; $i < 10; $i++) {
print $i . ', ';
if ($i == 1) {
break 2;
}
}
}
while (true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment