PHP: goto - Manual
They have a cool picture:
|
|
|
Guest_Jordan_*
Guest_Jordan_*
$i = 0;
goto: Codecall;
echo "This will not show up";
CodeCall: {
if($i < 10) {
$i++;
goto: Codecall;
}
}
echo "\$i = 10;";
Guest_Jordan_*
Guest_Jordan_*