Test: stream_socket_client vs. fsockopen
This test depends on external server performance and setup, so is fairly inaccurate.
Run this test again Return to test menuHistorical Results
Based on (4) saved test runs, The test labeled "fsockopen()" was (on average) the faster by 0.0066 seconds, (0.833% faster)
The fsockopen() test took 0.7822 seconds.
The stream_socket_client() test took 0.7888 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 212,263 loops for a total of 4,245,265 runs.
- Line execution difference (0.000002) milliseconds.
- Avg difference (0.000) milliseconds per 212,263 loops.
- Total difference 6.57 milliseconds for 4,245,265 loops
The iteration variablity for Code 1 was (0.0000) milliseconds and Code 2 was (0.0000) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "stream_socket_client()", was:
$fp = stream_socket_client('tcp://127.0.0.1:80', $errno, $error); fclose($fp);
The second test, "fsockopen()", was:
$fp = fsockopen('127.0.0.1', 80, $errno, $error); fclose($fp);