Topic Overview

Welcome! In this lesson, we're exploring special instructions in PHP: Conditional Statements, along with the break and continue statements. As we've learned, loops allow us to execute a block of code numerous times. By combining these loops with conditional statements and incorporating the useful break and continue instructions, we achieve more robust and efficient code. Let's dive in!

The 'if' Statement

In PHP, the if statement triggers actions in our code based on a specific condition. Consider this straightforward example, where the if statement determines which message to print based on the value of $temperature:

<?php
$temperature = 15;

if ($temperature > 20) {
    echo "Wear light clothes."; // This message will print if the temperature is over 20.
} else {
    echo "Bring a jacket."; // This message will print otherwise.
}
?>

We can evaluate multiple conditions using elseif. This phrase means, "If the previous condition isn't true, then check this one":

<?php
$temperature = 15;

if ($temperature > 30) {
    echo "It's hot outside!"; // This will print if the temperature is over 30.
} elseif ($temperature > 20) {
    echo "The weather is nice."; // This will print if the temperature is between 21 and 30.
} else {
    echo "It might be cold outside."; // This will print if the temperature is 20 or below.
}
?>
The 'break' Statement
The 'continue' Statement
Use-case with a Foreach Loop
Lesson Summary and Practice

Congratulations! You are now familiar with PHP's if statement, as well as the break and continue statements and their applications in loops. We encourage you to reinforce your learning through the practice exercises. Try altering the examples to check different conditions or use continue in different loop scenarios. Happy coding!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal