| Current Path : /home/rtorresani/www/vendor/magento/magento-coding-standard/Magento2/Tests/PHP/ |
| Current File : //home/rtorresani/www/vendor/magento/magento-coding-standard/Magento2/Tests/PHP/GotoUnitTest.inc |
<?php
goto a;
goto b;
echo 'Foo';
a:
echo 'Bar';
b:
echo 'Yeah';
for ($i = 0, $j = 50; $i < 100; $i++) {
while ($j--) {
if ($j == 17) {
goto end;
}
}
}
echo "i = $i";
end:
echo 'j hit 17';