<?phpfor ($b = 0; $b = -5; $b = 1){ print $b; if ($b != 2) break;}?>
The order of execution is initialization, check, increment/decrement, check, increment/decrement, check, increment/decrement….so on .
Previous Question Next Question
Your comments will be displayed only after manual approval.