PHP - Loops
Identify the problem in this PHP code:
for ($i = 0; $i < 2; $i++) {
for ($j = 0; $j < 2; $j++) {
if ($j == 1) continue 3;
echo "$i$j ";
}
}Identify the problem in this PHP code:
for ($i = 0; $i < 2; $i++) {
for ($j = 0; $j < 2; $j++) {
if ($j == 1) continue 3;
echo "$i$j ";
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions