使用curl 代码可以为目标网站生成多少带宽?
我使用此函数从另一个网站加载一些源。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只会加载指定的
$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.