PHP - Loops
Which of the following PHP statements correctly skips the current iteration of the outer loop when inside two nested loops?
Which of the following PHP statements correctly skips the current iteration of the outer loop when inside two nested loops?
continue can take an optional numeric argument indicating how many nested loops to skip.continue 2; skips the current iteration of the outer loop when inside two nested loops.continue 2; -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions