continue is used within looping structures to skip the rest of the current loop iteration ... while (1) { echo "Inner\n"; continue 3; } echo "This never gets output.
php.net