Test: in_array vs. key
Is it faster to use a key to lookup (in arrays with many values), or in_array?
Run this test again Return to test menuHistorical Results
Based on (1) saved test runs, The test labeled "in_array()" was (on average) the faster by 0.0163 seconds, (1.420% faster)
The in_array() test took 1.1284 seconds.
The key test took 1.1447 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 286,251 loops for a total of 5,725,020 runs.
- Line execution difference (0.000003) milliseconds.
- Avg difference (0.000) milliseconds per 286,251 loops.
- Total difference 16.26 milliseconds for 5,725,020 loops
The iteration variablity for Code 1 was (0.0000) milliseconds and Code 2 was (0.0000) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "in_array()", was:
for ($i = 0; $i < 10; $i++) $GLOBALS['dummy2'] = in_array($i * 20, $GLOBALS['dummy']);
The second test, "key", was:
for ($i = 0; $i < 10; $i++) $GLOBALS['dummy2'] = isset($GLOBALS['dummy'][$i * 20]);