PHP Loops

0
4χλμ.

In the following chapters you will learn how to repeat code by using loops in PHP.


PHP Loops

Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code-lines in a script, we can use loops.

Loops are used to execute the same block of code again and again, as long as a certain condition is true.

In PHP, we have the following loop types:

  • while - loops through a block of code as long as the specified condition is true
  • do...while - loops through a block of code once, and then repeats the loop as long as the specified condition is true
  • for - loops through a block of code a specified number of times
  • foreach - loops through a block of code for each element in an array

The following chapters will explain and give examples of each loop type.

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
άλλο
PHP Operators
PHP Operators Operators are used to perform operations on variables and values. PHP divides the...
από PHP Tutorial 2024-05-17 07:41:39 0 10χλμ.
άλλο
PHP Multidimensional Arrays
In the previous pages, we have described arrays that are a single list of key/value pairs....
από PHP Tutorial 2024-05-17 08:07:20 0 8χλμ.
άλλο
PHP - Concatenate Strings
String Concatenation To concatenate, or combine, two strings you can use...
από PHP Tutorial 2024-05-17 07:30:24 0 9χλμ.
άλλο
PHP $GLOBALS
$GLOBALS is an array that contains all global variables. Global Variables Global...
από PHP Tutorial 2024-05-17 08:08:27 0 8χλμ.
άλλο
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
από PHP Tutorial 2024-05-17 08:06:46 0 8χλμ.
Sociallez https://sociallez.com