Test: foreach (fcall) vs. foreach ($temp)
Is the array being iterated cached? It could cause some nasty side effects to OOP if it is, but maybe PHP is smart about this.
View test history (1) Run this test again Return to test menuResult: Discarded
The test labeled "foreach (fcall)" was the faster by 0.0211 seconds, (1.957% faster)
The foreach (fcall) test took 1.0559 seconds.
The foreach ($temp) test took 1.077 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 287,922 loops for a total of 5,758,440 runs.
- Line execution difference (0.000004) milliseconds.
- Avg difference (1.054) milliseconds per 287,922 loops.
- Total difference 21.07 milliseconds for 5,758,440 loops
The iteration variablity for Code 1 was (2.7429) milliseconds and Code 2 was (3.4863) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "foreach (fcall)", was:
foreach (array_merge(range(1, 10), range(11, 20), range(21, 30), range(31, 40)) as $v) $GLOBALS['dummy2'] = $v;
The second test, "foreach ($temp)", was:
$temp = array_merge(range(1, 10), range(11, 20), range(21, 30), range(31, 40)); foreach ($temp as $v) $GLOBALS['dummy2'] = $v;