Difference between continue and break in PHP

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

 

while ( $theConditionIsTrue ) {   
    break;              -------- exits the loop ----------┐
}                                                         |
                        <---------------------------------┘