Test: substr_compare vs strpos
4800 character string, check if a substring exists in a defined location.
View test history (1) Run this test again Return to test menuResult: Discarded
The test labeled "substr_compare" was the faster by 0.0166 seconds, (2.874% faster)
The substr_compare test took 0.5621 seconds.
The strpos test took 0.5787 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 130,369 loops for a total of 2,607,380 runs.
- Line execution difference (0.000006) milliseconds.
- Avg difference (0.832) milliseconds per 130,369 loops.
- Total difference 16.63 milliseconds for 2,607,380 loops
The iteration variablity for Code 1 was (5.1925) milliseconds and Code 2 was (5.6194) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "substr_compare", was:
$test = substr_compare($GLOBALS['dummy'], 'ghi', 6, 3) === 0;
The second test, "strpos", was:
$test = strpos($GLOBALS['dummy'], 'ghi', 6) === 6;