PHP uses continue to realize skipping the remaining code in this loop.

墨辰丷
Release: 2023-03-27 07:20:02
Original
2205 people have browsed it

The continue jump statement is used to skip the statement specifying the condition in this loop and continue to execute other loop statements. The following article mainly introduces you to a point to note about using continue to skip the remaining code in this loop in PHP. The content in the article is relatively basic, and friends in need can refer to it. Let’s take a look together.

Preface

As we all know, in PHP, continue is used in the loop structure to skip the remaining code in this loop and The next iteration of the loop begins 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!

continueUsage:

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

Output result:

0 1 3 4

Obviously, when $n is equal to 2, the output is skipped, which 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";
}
?>
Copy after login

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:

Use cases of continue in php

php process control continue statement

##About how to use JavaScript Break and Continue statements

##

The above is the detailed content of PHP uses continue to realize skipping the remaining code in this loop.. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!