Test: addslashes vs. mysql_escape_string
No Description
View test history (1) Run this test again Return to test menuResult: Saved
The test labeled "addslashes()" was the faster by 0.0153 seconds, (1.473% faster)
The addslashes() test took 1.0265 seconds.
The mysql_escape_string() test took 1.0418 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 294,285 loops for a total of 5,885,700 runs.
- Line execution difference (0.000003) milliseconds.
- Avg difference (0.767) milliseconds per 294,285 loops.
- Total difference 15.34 milliseconds for 5,885,700 loops
The iteration variablity for Code 1 was (0.7446) milliseconds and Code 2 was (0.8747) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "addslashes()", was:
$GLOBALS['dummy2'] = addslashes($GLOBALS['dummy']);
The second test, "mysql_escape_string()", was:
$GLOBALS['dummy2'] = mysql_real_escape_string($GLOBALS['dummy']);