Historical Results
Based on (5) saved test runs, The test labeled "preg_replace()" was (on average) the faster by 0.0075 seconds, (1.007% faster)
The preg_replace() test took 0.7347 seconds.
The str_replace() test took 0.7421 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 189,145 loops for a total of 3,782,892 runs.
- Line execution difference (0.000002) milliseconds.
- Avg difference (0.000) milliseconds per 189,145 loops.
- Total difference 7.47 milliseconds for 3,782,892 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, "preg_replace()", was:
$GLOBALS['dummy2'] = preg_replace('~([Ww]heat|[Tt]hins)~', 'Nilla', $GLOBALS['dummy']);
The second test, "str_replace()", was:
$GLOBALS['dummy2'] = str_replace(array('Wheat', 'Thins', 'wheat', 'thins'), 'Nilla', $GLOBALS['dummy']);