Result
Unfortunately, no history for this test is available.
Code
The first test, "create_function()", was:
/* $GLOBALS['dummy'] = create_function('', ' $x = 0; $x += 5; if ($x >= 5) $x = 0; $x; $x;'); */ $GLOBALS['dummy']();
The second test, "regular callback", was:
/* function dummy() { $x = 0; $x += 5; if ($x >= 5) $x = 0; $x; $x; } $GLOBALS['dummy_cb'] = 'dummy'; */ $GLOBALS['dummy_cb']();