, continue, foreach, . continue in situ .
while($something) {
foreach($array as $value) {
if($ok) {
continue; // start next foreach($array as $value)
}
foreach($value as $val) {
if($ok) {
break 2; // terminate this loop and start next foreach($array as $value)
}
}
}
}
RE:
while($something) {
if($somevalue) {
continue;
}
}