PHP Goto
<?php
goto a;
echo 'Foo';
a:
echo 'Bar';
?>
Cautious Cardinal
<?php
goto a;
echo 'Foo';
a:
echo 'Bar';
?>