Which of these would be better for performance and readability?
foreach(range(0,10000) as $i) {} // 3.847 ms
for($i = 0; $i < 10000; ++$i) {} // 0.663 ms
Edit: Did a benchmark and the last one was almost 6 times faster.
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Traditional If you execute this you can see that plain
It is better to use traditional |
|||
|
|
|
If it's that critical,
is faster than
but you'll not really notice much difference over just 1000 iterations Is it really so essential to micro-optimize.... and if so, why can't you simply set up some test runs to compare the different options yourself |
|||||||||
|
|
For example, if I had an array called 'User':
I could iterate through that very easily and still make use of the keys:
This would print out:
With When you're using object-oriented practice in PHP, you'll find that you'll be using |
|||
|
|
Foreach is great for iterating through arrays that use keys and values. With for loops, it's more difficult to retain the use of the keys. http://www.c-sharpcorner.com/interviews/answer/2147/ this may be helpful |
||||
|
|
|
In this particular case (with |
|||
|
|
|
comparing execution speed of some php functions for loop took
using count() means:
where as foreach() loop:
these both are done on same array and their respective execution time is shown both |
|||
|
|