Bonjour,
savez vous comment appeler la commande wget depuis le Controller symfony?
Avez vous un tutoriel ou un exemple?
ma fonction ne fonctionne plus avec symfony
public function fetchUsingWget($url)
{
@unlink(__DIR__ . '\res.html');
$outputfile = __DIR__ . '\res.html';
$cmd = "wget -q \"$url\" -O \"$outputfile\"";
exec($cmd);
$content = file_get_contents($outputfile);
@unlink(__DIR__ . '\res.html');
return $content;
}
merci