Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
next
[go: Go Back, main page]

next


next LABEL
next

 ループの先頭に戻ります。C言語やJavaのcontinueに相当します。LABELが指定してある場合は、指定LABELのループの先頭に戻ります。
 ループにcontinueブロックがある場合は、continueブロックを実行してからループの先頭に戻ります。

サンプルプログラム

foreach $i (1..10) {
	next if ($i == 5);
	print "$i\n";
}

関連項目

ループの先頭に戻る
ループから抜ける
・continueブロック
forループ
foreachループ
lastループ制御コマンド
・redoループ制御コマンド
・until文
while文