Category PHP

PHP Return

The return statement in PHP allows you to return a value from the function. If you want to return a value from the PHP function, you can use the return keyword, followed by the value to be returned. The return…

Functions in PHP

Components of functions in PHP

In this tutorial, we will learn about the concepts of functions in PHP. A function is a block of reusable code that performs a specific task. It will only execute when “someone” calls it. If you do not call it,…

Continue Statement in PHP

An example of execution style of continue statement in PHP.

The continue statement in PHP is also a control flow statement similar to break statement except that it only stops the current execution of loop instead of stopping the entire loop. The continue statement is used to skip the current…

Break Statement in PHP

The break statement in PHP is a control flow statement used to exit the current loop iteration or stop the entire loop prematurely. You can use the break statement to control the flow of execution within loops such as for,…

Do While Loop in PHP

Flowchart diagram of PHP do while loop.

The do-while loop in PHP or any other programming languages is just an opposite of the while loop. Its function is exactly like an ordinary while loop, with only one key difference: The while loop evaluates the condition before executing…