gpt4 book ai didi

php - 如何从 php 运行 wget 以便输出显示在浏览器窗口中?

转载 作者:行者123 更新时间:2023-12-03 01:58:39 26 4
gpt4 key购买 nike

如何从 php 运行 wget 以便输出显示在浏览器窗口中?

最佳答案

您可以使用 file_get_contents反而。更容易。

echo 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);

关于php - 如何从 php 运行 wget 以便输出显示在浏览器窗口中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2528466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com