$i=0;
while(1)
{
#if ( $a == 0 ){ last; }#抜ける
#if ( $a == 0 ){ next; }#次のループへ
print "test";
}
continue#while文のみ。絶対毎回実行される。
{
$i++;
}
制御構文/while
トラックバック(0)
トラックバックURL: http://www.adg7.com/mt/mt-tb.cgi/542
$i=0;
while(1)
{
#if ( $a == 0 ){ last; }#抜ける
#if ( $a == 0 ){ next; }#次のループへ
print "test";
}
continue#while文のみ。絶対毎回実行される。
{
$i++;
}
トラックバックURL: http://www.adg7.com/mt/mt-tb.cgi/542
コメントする