Test: substr($var, 5, 1) vs. isset && {5}
Return the nth character of a string, substring vs string array checking.
Run this test again Return to test menuResult: Discarded
The test labeled "isset {5}" was the faster by 0.1401 seconds, (9.599% faster)
The isset {5} test took 1.3195 seconds.
The substr() test took 1.4596 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 274,406 loops for a total of 5,488,120 runs.
- Line execution difference (0.000026) milliseconds.
- Avg difference (7.005) milliseconds per 274,406 loops.
- Total difference 140.10 milliseconds for 5,488,120 loops
The iteration variablity for Code 1 was (15.9257) milliseconds and Code 2 was (13.2226) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "substr()", was:
for ($j = 0; $j < 100; $j++) $GLOBALS['dummy2'] = substr($GLOBALS['dummy'], 5, 1);
The second test, "isset {5}", was:
for ($j = 0; $j < 100; $j++) $GLOBALS['dummy2'] = isset($GLOBALS['dummy']{5}) ? $GLOBALS['dummy']{5} : '';