1. 29
    Continue or break out of a PHP loop
    2m 18s

Continue or break out of a PHP loop

Mark Shust
InstructorMark Shust
Share this video with your friends

Social Share Links

Send Tweet
Published 2 years ago
Updated 2 years ago

Sometimes you need to escape out of a PHP loop. You can easily do this by using either the continue or break keywords.

Mark Shust: [0:00] It's possible to either skip over the current iteration of a loop or break out of it. To skip over the current iteration, you can use a continue keyword within a conditional. Let's add another record onto this array, this time for "How to Learn NGINX." When we save and refresh the page, we will see that there are now three posts, and the last one being How to Learn NGINX. [0:27] Let's say we wanted to skip over blog post titles that contain the text "SQL." We can do this by writing an if statement within the foreach loop and then continuing with the loop. Let's create a new PHP tag, and we will write an if statement. For the condition, we can check if a specific variable contains a string of text by calling the str_contains() function. This function accepts two arguments.

[0:58] The first argument is the variable we'd like to check text against. This will be the current iteration of the loop, which is POSTS [$i] , and then we are checking against the title key. The second argument is the text we'd like to search for, which would be "SQL." Finally, we will close up this if statement with an endif.

[1:27] This condition will return true if the title contains the text "SQL." If this matches, let's call the continue keyword. This will skip over the current iteration of the loop, not outputting the lines that follow it. If we save and refresh the page, we will see that that "How to Learn MySQL" post is completely skipped over, but the NGINX post is still outputted.

[1:54] Similarly, we can use the break keyword to completely break out of a loop. If we change continue to break and refresh the page, you will see that break completely exits out of the loop and only outputs the first iteration. This is useful if you wanted to prevent the loop from further executing based on a certain condition.

egghead
egghead
~ 7 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today