您可以只使用
file_get_contents.它更容易
原文链接:https://www.f2er.com/php/138151.htmlecho file_get_contents('http://www.google.com');
如果你必须使用wget,你可以尝试一下:
$url = 'http://www.google.com'; $outputfile = "dl.html"; $cmd = "wget -q \"$url\" -O $outputfile"; exec($cmd); echo file_get_contents($outputfile);