file_get_contents 位于代理后面(使用代理列表)

发布于 2024-12-28 18:04:43 字数 450 浏览 0 评论 0原文

我使用这个解决方案:

$aContext = array(
    'http' => array(
        'proxy' => 'tcp://192.168.0.2:3128',
        'request_fulluri' => true,
    ),
);
$cxContext = stream_context_create($aContext);

$sFile = file_get_contents("http://www.google.com", False, $cxContext);

echo $sFile;

如何更改脚本,以便使用以下格式的代理列表而不是代理:

...
192.168.0.2:3128
193.123.8.2:3128
194.115.10.2:80
195.178.0.2:80
...

I use this solution:

$aContext = array(
    'http' => array(
        'proxy' => 'tcp://192.168.0.2:3128',
        'request_fulluri' => true,
    ),
);
$cxContext = stream_context_create($aContext);

$sFile = file_get_contents("http://www.google.com", False, $cxContext);

echo $sFile;

How do I change the script so that instead of a proxy was used a proxy list in format:

...
192.168.0.2:3128
193.123.8.2:3128
194.115.10.2:80
195.178.0.2:80
...

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

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

发布评论

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

评论(1

简单爱 2025-01-04 18:04:43

好吧,您已经获得了大部分代码,这就是我要做的:

<?php
    $proxies = array( '192.168.0.2:3128', '192.168.8.2:3128', '192.168.10.2:80' );

    // Pick a random proxy:
    $proxy_to_use = $proxies[ rand( 0, count( $proxies ) - 1 ) ];

    $aContext = array(
      'http' => array(
        'proxy' => 'tcp://' . $proxy_to_use,
        'request_fulluri' => true,
      ),
    );

    $cxContext = stream_context_create($aContext);
    $content = file_get_contents("http://www.google.com", false, $cxContext);

    echo $content;
?>

这是您想要的吗?

Well, you've got most of the code already, here's what I'd do:

<?php
    $proxies = array( '192.168.0.2:3128', '192.168.8.2:3128', '192.168.10.2:80' );

    // Pick a random proxy:
    $proxy_to_use = $proxies[ rand( 0, count( $proxies ) - 1 ) ];

    $aContext = array(
      'http' => array(
        'proxy' => 'tcp://' . $proxy_to_use,
        'request_fulluri' => true,
      ),
    );

    $cxContext = stream_context_create($aContext);
    $content = file_get_contents("http://www.google.com", false, $cxContext);

    echo $content;
?>

Is that what you had in mind?

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