The continue statement in PHP is used to ______ the rest of the current loop iteration and continue with the next one.
- Skip
- Terminate
- Pause
- Restart
The correct option is: "Skip." The continue statement in PHP is used to skip the remaining code in the current loop iteration and continue with the next iteration. It allows you to bypass certain operations within an iteration based on a condition. Learn more: https://www.php.net/manual/en/control-structures.continue.php
Loading...