Universeorange.com/Docs/

R3m/framework Function reference while

{while($expression)}
{/while}

While loops are the simplest type of loop in PHP.
They behave just like their C counterparts.
The basic form of a while statement is:

{while (expr)}
    statement
{/while}

The meaning of a while statement is simple.
It tells PHP to execute the nested statement(s) repeatedly, as long as the while expression evaluates to true.
The value of the expression is checked each time at the beginning of the loop, so even if this value changes during the execution of the nested statement(s), execution will not stop until the end of the iteration (each time PHP runs the statements in the loop is one iteration).
If the while expression evaluates to false from the very beginning, the nested statement(s) won't even be run once.
A {break()} can be used to exit a while loop.

More information:

https://www.php.net/manual/en/control-structures.while.php

Last modified: 2021-06-07

© 2021 universeorange.com