The goto operator can be used to jump to other instruction in the program. The target place is specified by the label and a colon and goto is followed by that label.
Przykład #1 goto example
<?php
goto a;
echo 'Foo';
a:
echo 'Bar';
?>
Powyższy przykład wyświetli:
Bar
Informacja: The goto operator is available since PHP 5.3.
It is not allowed to jump into loop or switch statement. Fatal error is issued in such case.