使用curl 代码可以为目标网站生成多少带宽?

发布于 2024-10-29 13:11:26 字数 486 浏览 0 评论 0原文

我使用此函数从另一个网站加载一些源。

function getWebPageSourceCurl($url) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0');
    $content = curl_exec($ch);
    curl_close($ch);
    return $content;
}

我可以为目标网站生成多少带宽?当我调用此函数时,服务器是否还会加载图像或仅加载源代码。

I use this function to load some source from another web site.

function getWebPageSourceCurl($url) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0');
    $content = curl_exec($ch);
    curl_close($ch);
    return $content;
}

How much bandwidth do I generate to destination web site? When I call this function does server also load images or just source code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恰似旧人归 2024-11-05 13:11:26

这只会加载指定的 $url (大概只是静态/动态输出的 HTML),带宽量将完全取决于页面有多大。这是不可能的。

This will only load the $url (presumably just the static/dynamic outputted HTML) specified, the amount of bandwidth will depend entirely on how big the page is. It's impossible to say.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文