Identical to file(), except that file_get_contents() returns the file in a string.
file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance.
Nota: Esta función es segura binariamente.
Sugerencia: Puede usar una URL como nombre de archivo con esta función si los fopen wrappers han sido activados. Consulte fopen() para más detalles sobre cómo especificar el nombre de fichero y Apéndice I una lista de protocolos URL soportados
Nota: Context support was added with PHP 5.0.0.
See also: fgets(), file(), fread(), include(), and readfile().