Skip to content

Instantly share code, notes, and snippets.

@SeanJA
Last active January 1, 2016 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanJA/8189221 to your computer and use it in GitHub Desktop.
Save SeanJA/8189221 to your computer and use it in GitHub Desktop.
<?php
$i = 1;
goto three;
sixteen:
three:
while(true){
goto nine;
}
nine:
echo 'Bar';
$i++;
if($i < 100){
goto sixteen;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment