Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/magento-coding-standard/Magento2/Tests/PHP/
Upload File :
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';