Developers Keep Learning

Welcome to Keep Learning, an inspiring online publication created by developers, for developers.

Follow publication

php-loops

Member-only story

PHP Loops — Which is faster?

Atakan Demircioğlu
Developers Keep Learning
2 min readNov 12, 2022

These are my notes about PHP loops, which are faster, and so on.

I just compared it in one way and wrote the test results. It is important what do yo do inside the looping.

Note: echo is affecting testing performance. But it is ok for getting an idea that what happens when loops are working.

Using reference in foreach

Completed in 0.00046801567077637 Seconds
Completed in 0.00078511238098145 Seconds

Summary

  • It seems faster to not use references. When I get this result firstly I was surprised. The Zend Engine, PHP’s core, uses a copy-on-write optimization mechanism that does not create a copy of a variable until it is modified. Passing by reference usually breaks the copy-on-write pattern and requires a copy whether you modify the value or not.
  • Also using reference is dangerous in this case because after the foreach if you forgot to unset $v it can cause unwanted results.
  • So, in PHP 7+ pass-by-value is faster than pass-by-reference.
  • foreach($array as $item) will leave the variable $item untouched after the loop. If the variable is a reference, foreach($array as &$item)it will "point" to the last element of the array even after the loop.

Is for loop faster than foreach?

  • With your usage or need, it can be changed actually. For this example we can say for is faster than foreach.
  • In most cases, foreach is more readable than for.

What is the fastest loop?

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Developers Keep Learning
Developers Keep Learning

Published in Developers Keep Learning

Welcome to Keep Learning, an inspiring online publication created by developers, for developers.

Atakan Demircioğlu
Atakan Demircioğlu

Written by Atakan Demircioğlu

Passionate about blogging and sharing insights on tech, web development, and beyond. Join me on this digital journey! 🚀

Responses (4)