goto

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

What's the worse thing that could happen if you use goto?

この画像は » xkcd から提供いただいたものです。

goto 演算子を使用すると、 プログラム中の他の命令にジャンプすることができます。 ジャンプ先はラベルとコロンで表し、 goto の後にそのラベルを指定します。 ラベルは大文字小文字を 区別します。 これは、完全に制約のない goto というわけではありません。 対象となるラベルは同じファイル上の同じコンテキストになければなりません。 つまり、関数やメソッドの外に飛び出したり 関数やメソッドの中に突入したりすることはできないということです。 また、いかなるループや switch 構造の中にも突入することができません。 逆にループや switch 構造から抜け出すことはできます。一般的な用法としては、 goto を複数レベルの break として使うものがあります。

例1 goto の例

<?php

goto a;
echo
'Foo';

a:
echo
'Bar';

?>

上の例の出力は以下となります。

Bar

例2 ループでの goto の例

<?php

for ($i = 0, $j = 50; $i < 100; $i++) {
while (
$j--) {
if (
$j == 17) {
goto
end;
}
}
}
echo
"i = $i";
end:
echo
'j hit 17';

?>

上の例の出力は以下となります。

j hit 17

例3 これは動作しません

<?php

goto loop;
for (
$i = 0, $j = 50; $i < 100; $i++) {
while (
$j--) {
loop:
}
}
echo
"$i = $i";

?>

上の例の出力は以下となります。

Fatal error: 'goto' into loop or switch statement is disallowed in
script on line 2

add a note

User Contributed Notes 4 notes

up
56
Lollo
4 years ago
You should mention the label can't be a variable
up
34
devbyjesus at example dot com
3 years ago
the problem of goto is that it is a good feature but in a large codebase it reduces the readability of the code . that's all . i try to not use it to think about the person who is going to read after me .
up
10
georgy dot moshkin at techsponsor dot io
1 year ago
You can use goto to hide large HTML blocks without using echo():<html><body><?php if ($hide_form_and_script) { goto label_1;} ?><form action="" method="post"><!-- some HTML here --></form><script>let a='test'; // no need to escape nested quotes as with echo()// some JavaScript here</script><?php label_1: ?></body></html>
up
8
BPI
2 years ago
You can jump inside the same switch. This can be usefull to jump to default<?php$x=3;switch($x){    case 0:    case 3:        print($x);            if($x)            goto def;    case 5:        $x=6;    default:        def:        print($x);}?>
To Top