Result: Discarded
The test labeled "==" was the faster by 0.04 seconds, (3.774% faster)
The == test took 1.0197 seconds.
The === test took 1.0597 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 290,715 loops for a total of 5,814,300 runs.
- Line execution difference (0.000007) milliseconds.
- Avg difference (2.000) milliseconds per 290,715 loops.
- Total difference 39.99 milliseconds for 5,814,300 loops
The iteration variablity for Code 1 was (1.1662) milliseconds and Code 2 was (2.8052) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "==", was:
for ($j = 0; $j < 100; $j++) $GLOBALS['dummy3'] = $GLOBALS['dummy1'] == $GLOBALS['dummy2'];
The second test, "===", was:
for ($j = 0; $j < 100; $j++) $GLOBALS['dummy3'] = $GLOBALS['dummy1'] === $GLOBALS['dummy2'];