How can the usage of continue in a foreach loop affect the loop's behavior in PHP?

Using `continue` in a foreach loop in PHP will skip the current iteration and move to the next element in the array. This can be useful when you want to skip certain elements based on a condition without exiting the loop entirely. To implement this, you can use the `continue` keyword followed by a semicolon within the loop to skip to the next iteration.

$numbers = [1, 2, 3, 4, 5];

foreach ($numbers as $number) {
    if ($number % 2 == 0) {
        continue; // Skip even numbers
    }
    echo $number . PHP_EOL;
}