while ( $theConditionIsTrue ) { <-----------------------┐
continue; -------- goes back to check the --┘
}
while ( $theConditionIsTrue ) {
break; -------- exits the loop ----------┐
} |
<---------------------------------┘