Javatpoint Logo

91-9990449935

 0120-4256464

PHP do while loop

PHP do while loop can be used to traverse set of code like php while loop. The PHP do-while loop is guaranteed to run at least once.

It executes the code at least one time always because condition is checked after executing the code.

Syntax

Flowchart

flowchart of php do while loop

Example

Output:

1
2
3
4
5
6
7
8
9
10
Next TopicPHP Break