PHP » PYTHON |
login |
register |
about
|
|
gotoThe 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.
Example #1 goto example
<?phpThe above example will output: Bar
Warning
It is not allowed to jump into loop or switch statement. Fatal error is issued in such case. |
more
Recently updated
more
Most requested
|