PHP continue statementThe PHP continue statement is used to continue the loop. It continues the current flow of the program and skips the remaining code at the specified condition. The continue statement is used within looping and switch control structure when you immediately jump to the next iteration. The continue statement can be used with all types of loops such as - for, while, do-while, and foreach loop. The continue statement allows the user to skip the execution of the code for the specified condition. SyntaxThe syntax for the continue statement is given below: jump-statement; PHP Continue Example with for loopExample In the following example, we will print only those values of i and j that are same and skip others. <?php Output: 11 22 33 PHP continue Example in while loopExample In the following example, we will print the even numbers between 1 to 20. <?php Output: Even numbers between 1 to 20: 2 4 6 8 10 12 14 16 18 20 PHP continue Example with array of stringExample The following example prints the value of array elements except those for which the specified condition is true and continue statement is used. <?php Output: One Two Three Four PHP continue Example with optional argumentThe continue statement accepts an optional numeric value, which is used accordingly. The numeric value describes how many nested structures it will exit. Example Look at the below example to understand it better: <?php Output: 12 13 21 23 31 32 |
0 Comments: