Archive

文章標籤 ‘go to’

PHP 控制流程 goto

2009年11月8日 阿捷 1 則評論

PHP 5.3 新增的一個 goto 程式碼。
GOTO 也不是完全好用,詳見 wili 對於goto使用的批評
在 PHP 中 GOTO 限制不能跳進迴圈或switch 中。

1
2
3
4
5
6
7
8
9
<?php
goto loop;
for($i=0,$j=50; $i<100; $i++) {
  while($j--) {
    loop:
  }
}
echo "$i = $i";
?>

PHP官方附GOto
php goto

Categories: PHP Tags: ,