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
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments