Home  >  Article  >  Backend Development  >  Detailed introduction to the comparison of For, While, and Foreach loops in PHP

Detailed introduction to the comparison of For, While, and Foreach loops in PHP

黄舟
黄舟Original
2017-03-23 09:51:041763browse

In the process of using PHP as a programming language, we often encounter situations where we need to execute a piece of code multiple times. At this time, you need to use PHP loop. PHP provides three different types of loops for you to use in appropriate scenarios:

For Loop

The for loop is used when you have determined how many times your

expression needs to be executed.

Syntax:

for (initialization; condition; increment)
{
    code to be executed;
}

{ echo "The number is " . $i . "
";
}?>

While loop

The while expression will execute a section of code until the conditional statement is false. While loops are generally better suited for database related operations.


Syntax:

while (condition)
{
    code to be executed;
}
 "5.00", 
    "apple" => "2.50", 
    "banana" => "3.99" ); 

foreach ($fruit as $key => $value) { 
    "$key is $value dollars 
";
} 

?>
Comparison of three types of loops

We know that there are many kinds of loops in PHP,

Now we need to know which loop is more Efficient so that the applications we write can be faster.

Let’s start the experiment for comparison.

While loop vs. For loop

VS.

The above experiment proves that while loop is better than For loop execution efficiency is 19.71% higher. Therefore, it is recommended to use while loops instead of For loops whenever possible.

For Loop vs Foreach Loop

 "cat", "dog" => 0, "red" => "green", 5 => 4, 3, "me");    
$keys = array_keys($test);    $size = sizeOf($keys);    for($a = 0; $a < $size; $a++)
    {        $t = $test[$keys[$a]];
    }?>

VS.

 "cat", "dog" => 0, "red" => "green", 5 => 4, 3, "me");   
 foreach($test as $t){
    
    }?>
The above experiment proves that

Foreach loop is 141.29% faster than For loop !

Conclusion

These loops are usually used to achieve different purposes, and now we know how each loop performs in terms of execution efficiency. When execution efficiency needs to be pursued, we usually recommend using while loops instead of for loops. Similarly, between the foreach loop and the loop loop, use the foreach loop as much as possible. Next, we'll look at how to effectively use loops in templates. Please stay tuned.


The above is the detailed content of Detailed introduction to the comparison of For, While, and Foreach loops in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn