do...whileFull code fragment that perform
REPEATED ACTIONS until a desired result is reached.
Behavior
do...while loops are the similar to
while loops, except the truth expression is checked at the end of each iteration instead of in the beginning.
Since PHP 5.3.0, it is possible to use the
goto operator instead of this function.
With the use of
goto it will be possible to code scripts with greater ease.
On the next page you will know how to use it.
RESULT
Maxima debetur puero reverentia!
5 times -> from 1 to 5 -> interval [1, 5]
1) Maxima debetur puero reverentia!
2) Maxima debetur puero reverentia!
3) Maxima debetur puero reverentia!
4) Maxima debetur puero reverentia!
5) Maxima debetur puero reverentia!