Home  >  Article  >  Backend Development  >  PHP implementation method of using continue to skip the remaining code in the loop

PHP implementation method of using continue to skip the remaining code in the loop

小云云
小云云Original
2018-02-10 13:37:281630browse

The continue jump statement is used to skip the statement specifying the condition in this loop and continue to execute other loop statements. As we all know, in PHP, continue is used in loop structures to skip the remaining code in this loop and start executing the next loop when the condition evaluates to true. It must be noted that when using continue, you must use ";" to separate other codes, otherwise it may cause errors!

continue Usage:

<?php
for ($n = 0; $n < 5; $n++) {
 if ($n == 2)
  continue;
  echo "$n\n";
}
?>

Output result:

0 1 3 4

Obviously, when $n is equal to 2, it is skipped The output is exactly what we want. If the semicolon is missing, an error will be reported!

Error code:

<?php
for ($n = 0; $n < 5; $n++) {
 if ($n == 2)
  continue
  echo "$n\n";
}
?>

Error message:

Parse error: syntax error, unexpected 'echo' (T_ECHO) in D:\phpStudy\WWW\demo\fun \continue.php on line 5

So note: when we use continue, we must be careful not to miss the semicolon!

Related recommendations:

Detailed explanation of the difference between break and continue in javaScript

PHP uses continue to skip this Notes on the remaining code in the secondary loop

php break and continue statements, goto statements and php constants

The above is the detailed content of PHP implementation method of using continue to skip the remaining code in the loop. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn