Test: file vs. fgets (array)
No Description
View test history (1) Run this test again Return to test menuResult: Discarded
The test labeled "file()" was the faster by 0.1019 seconds, (7.662% faster)
The file() test took 1.2279 seconds.
The fgets() test took 1.3298 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 289,511 loops for a total of 5,790,220 runs.
- Line execution difference (0.000018) milliseconds.
- Avg difference (5.095) milliseconds per 289,511 loops.
- Total difference 101.89 milliseconds for 5,790,220 loops
The iteration variablity for Code 1 was (10.0659) milliseconds and Code 2 was (16.6278) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "file()", was:
$lines = file('supplement/dummy.inc'); foreach ($lines as $line) $GLOBALS['dummy2'] = rtrim($line);
The second test, "fgets()", was:
$fp = fopen('supplement/dummy.inc', 'rt'); while (!feof($fp)) $GLOBALS['dummy2'] = rtrim(fgets($fp)); fclose($fp);