<?php goto a; echo 'Foo'; a: echo 'Bar'; ?>
Bar
<?php for ($i=0; $i < 10; $i++) { if($i == 3) { goto a; } echo $i; } a: echo "跳出迴圈"; ?>
012 跳出迴圈