How can the use of if/else statements in PHP loops impact the iteration process and output?

When using if/else statements within PHP loops, it's important to consider how the conditional logic affects the iteration process. If the if/else conditions are not carefully structured, it can lead to unexpected behavior or incorrect output. To ensure smooth iteration and accurate output, make sure the if/else statements are properly nested within the loop and that the conditions are correctly evaluated.

// Example of using if/else statements within a PHP loop
$numbers = [1, 2, 3, 4, 5];

foreach ($numbers as $number) {
    if ($number % 2 == 0) {
        echo $number . " is even" . PHP_EOL;
    } else {
        echo $number . " is odd" . PHP_EOL;
    }
}