FileFetcher::getRemote PHP Méthode

getRemote() static public méthode

Récupère le contenu à l'aide file_get_contents
static public getRemote ( string $url ) : string
$url string L'URL du fichier
Résultat string Le contenu du fichier
    static function getRemote($url)
    {
        return file_get_contents($url);
    }