PHP Performance & Benchmarking: PHP remote file access: fopen() and file_get_contents()
Opening files in PHP is easier now because of the file_get_contents() function which is the recommended way to dump a file's contents into a string according to the official PHP documentation. But does this PHP function really perform better than fopen? T...