Result
Unfortunately, no history for this test is available.
Code
The first test, "foreach", was:
$range = range(0, 100); foreach ($range as $n) $GLOBALS['dummy'] = $n;
The second test, "for", was:
for ($n = 0; $n <= 100; $n++) $GLOBALS['dummy'] = $n;