24

PHOTO EMBED

Mon Mar 04 2024 01:14:30 GMT+0000 (Coordinated Universal Time)

Saved by @codewarrior

for ($i = 1; $i <= 5; $i++) {
    if ($i == 3) {
        continue; // skip the rest of the loop for $i equals 3
    }
    echo $i . " ";
}
// Output: 1 2 4 5
content_copyCOPY