dongyingming8970 2011-06-16 16:10
浏览 43
已采纳

PHP - 卷曲MultiRequest超时

I'm using this following multiRequest function and sometimes the problem occurs, that the loop at

do {
curl_multi_exec($mh, $running);
} while ($running > 0);

seems endless and reach my php execution limit. I thought it had sth to do with the DNS Lookup, so I'm calling the ip addresses directly now.

But this problem sadly still occurs sometimes... Is there a way to set a timeout for each handle to avoid an endless loop? What else I could do to fix this problem?

Thank you very much!

function multiRequest($data, $options = array())
    {
        // array of curl handles
        $curly = array();
        // data to be returned
        $result = array();
        // multi handle
        $mh = curl_multi_init();
        // loop through $data and create curl handles
        // then add them to the multi-handle
        foreach ($data as $id => $d) {
            $curly[$id] = curl_init();
            $url = (is_array($d) && !empty($d['url'])) ? $d['url'] : $d;
            curl_setopt($curly[$id], CURLOPT_URL, $url);
            curl_setopt($curly[$id], CURLOPT_HEADER, 0);
            curl_setopt($curly[$id], CURLOPT_RETURNTRANSFER, 1);
            // post?
            if (is_array($d)) {
                if (!empty($d['post'])) {
                    curl_setopt($curly[$id], CURLOPT_POST, 1);
                    curl_setopt($curly[$id], CURLOPT_POSTFIELDS, $d['post']);
                }
            }
            // extra options?
            if (!empty($options[$id])) {
                curl_setopt_array($curly[$id], $options[$id]);
            }

            curl_multi_add_handle($mh, $curly[$id]);
        }
        // execute the handles
        $running = null;
        do {
            curl_multi_exec($mh, $running);
        } while ($running > 0);
        // get content and remove handles
        foreach($curly as $id => $c) {
            $result[$id] = curl_multi_getcontent($c);
            curl_multi_remove_handle($mh, $c);
        }
        // all done
        curl_multi_close($mh);
        return $result;
    }
  • 写回答

1条回答 默认 最新

  • douyuan4357 2011-06-16 20:29
    关注
    1. You can set an individual timeout on a handle with CURLOPT_TIMEOUT (and other options), although that requires that you have a fairly recent libcurl for it to work properly.

    2. You can have your own timeout and just remove the handle from the multi handle (which thus cancels the operation) at any given time you think enough is enough.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 怎样才能让鼠标沿着线条的中心线轨迹移动
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?