Result
Unfortunately, no history for this test is available.
Code
The first test, "preg_replace()", was:
$GLOBALS['dummy2'] = preg_replace('~(Wheat|Thins)~i', 'Nilla', $GLOBALS['dummy']);
The second test, "stri_replace()", was:
$GLOBALS['dummy2'] = str_ireplace(array('Wheat', 'Thins'), 'Nilla', $GLOBALS['dummy']);