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
ループの先頭に戻る
[go: Go Back, main page]

ループの先頭に戻る


 nextを使うとループの先頭に処理を戻すことができます。
while (my $line = <>) {
	next if ($line =~ /^\n/);
	next if ($line =~ /^#/);
	print $line;
}

関連項目

nextループ制御コマンド
ループから抜ける