PHP Loop Performance Showdown: Which Loop is the Fastest?

HomeNextGenPHP Loop Performance Showdown: Which Loop is the Fastest?

As far as my knowledge is concerned, I never use it almost for array traversal. I will do it for other types of iterations. But for each is just too easy. The execution time difference is very minimal in most scenarios.

It is very surprising things to watch here:

for($i =0; $i < count($array); $i++){

This loop is a very expensive loop. it calls count on every single iteration.

As for the iterators, for each is equivalent to:

$it->get();
while($it->true()){
$key = $it->key();// If using the $key => $value syntax
$value = $it->current();
 
// Contents of the loop in here
 
$it->next();
}

As far as faster ways to iterate is concerned, it just depends on the problem.

Remember, Premature Optimization Is The Root Of All Evil.

This is the below example, based on the practical executions time taken;

$a = array();
for($i =0; $i <10000; $i++){
$a[]= $i;
}
 
$start = microtime(true);
foreach($a as $k => $v){
$a[$k]= $v +1;
}
echo “Completed in “, microtime(true) $start,” Seconds\n”;
 
$start = microtime(true);
  
$start = microtime(true);
foreach($a as $k =>&$v){
$v = $v +1;
}
echo “Completed in “, microtime(true) $start,” Seconds\n”;
 
$start = microtime(true);
foreach($a as $k => $v){}
echo “Completed in “, microtime(true) $start,” Seconds\n”;
 
$start = microtime(true);
foreach($a as $k =>&$v){}
echo “Completed in “, microtime(true) $start,” Seconds\n”;
output :
  
Completedin0.0073502063751221Seconds
Completedin0.0019769668579102Seconds
Completedin0.0011849403381348Seconds
Completedin0.00111985206604Seconds

This is another example of providing script execution time.

By using a for loop :
 
for($i=0; $i<100000; $i++)
{
//Do Something
}
 
Using a while loop
 

$i=0;
while($i<100000)
{
//do something
$i++;
}
 
Using a do while loop :
 
$i=0;
do
{
//do something
$i++;

} while($i<100000);

Output

 

If you are looking for more php online tutorials, Then click the below link :

PHP INTERVIEW QUESTIONS AND ANSWERS

TOP PHP LOGICAL QUESTIONS AND ANSWERS

Also Read:

free download banner for ebooks with a lady looking on

Exclusive

Related Posts

How to Leverage Crowdsourced Testing For Your Business?

One such method of testing where you get compensated...

ERP Software Provided As A Service With The Goal Of Enhancing Resource Performance

Over the course of the last several years, enterprise...

Exploring the World of Sports Betting: Turning Concepts into Action

Sports betting has become increasingly popular due to the...

How The Mobile Signal Booster Gives An Edge To The Customers-?

There has been a substantial development in the arena...
💡 Life Compass Quiz
Pearls of Wisdom
Contributing Author
Contributing Author
InPeaks.com gives you an awesome opportunity to submit your unique content that are educative, informative, knowledgeable and adding value to the people. You may submit the post using the 'Guest Blog' link. Read the guidelines before submission. Thank you.
🗨️ Join the Conversation!
We’d love to hear your thoughts.
Share your experience in the comments below.

3 COMMENTS

  1. I like what you guys are up too. Such smart work and reporting! Keep up the excellent works guys I have incorporated you guys to my blogroll. I think it’ll improve the value of my website :).

  2. Terrific article! This is the type of information that are supposed to be shared around the web. Shame on the search engines for not positioning this post upper! Come on over and discuss with my site . Thank you =)

  3. Hi! Someone in my Facebook group shared this site with us so I came to look it over. I’m definitely enjoying the information. I’m book-marking and will be tweeting this to my followers! Superb blog and outstanding style and design.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Featured Bloggers

Ralph Deal
1 POSTS
Neha
1 POSTS
Tanya Jain
16 POSTS
Memberships banner for InPeaks Blogs using Ko-Fi

Latest Posts

Quick Poll

Hostinger banner for referral

Enjoyed this post?

Sharing takes a second, but its impact lasts forever!