FileFetcher::getRemote PHP Метод

getRemote() статический публичный Метод

Récupère le contenu à l'aide file_get_contents
static public getRemote ( string $url ) : string
$url string L'URL du fichier
Результат string Le contenu du fichier
    static function getRemote($url)
    {
        return file_get_contents($url);
    }