Conducting Loops in Harmony with Continue We looked at the break statement in the previous article. As a refresher, the break statement terminates the loop once it’s encountered. Sometimes we want to just skip an iteration and continue with the loop; that can be achieved with the continue statement. Let’s look at how we can use the  continue statement inside of each loop:  while ,  do-while ,  for , and  foreach . Each loop will iterate through the following array: ?php $next_car = [ “Porsche 911”, “Ferrari F355”, “Mitsubishi EVO”, “R34 Skyline”, “C8 Corvette” ]; ?> In the first example, we’ll look at the while loop. PHP will iterate