PHP - curl_multi_exec永远不会完成

时间:2017-07-17 19:36:43

标签: php curl

我尝试了许多使用curl_multi_exec的在线示例。不幸的是,他们中没有一个"工作"对我而言,因为他们永远阻止我永远不会得到回应。

我尝试修改一些示例,这样如果我得到一个没有效果的-1响应它们就会睡眠(除了停止我的CPU达到100%)。我在CLI中尝试了这两种方法,并作为具有相同结果的Web服务器运行。

问题:这些脚本是否适用于其他人,还是需要修改/更新PHP 7.0?也许我需要安装除php7.0-curl之外的其他软件包?

环境

我在Ubuntu 16.04上运行PHP 7.0:

PHP 7.0.18-0ubuntu0.16.04.1 (cli) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
    with Zend OPcache v7.0.18-0ubuntu0.16.04.1, Copyright (c) 1999-2017, by Zend Technologies

1 个答案:

答案 0 :(得分:0)

正如评论http://php.net/manual/en/function.curl-multi-init.php#115055所述,官方文件存在问题。所以示例2的类应该看起来像这样。改变了第一个while循环

class ParallelGet
{
  function __construct($urls)
  {
    // Create get requests for each URL
    $mh = curl_multi_init();
    foreach($urls as $i => $url)
    {
      $ch[$i] = curl_init($url);
      curl_setopt($ch[$i], CURLOPT_RETURNTRANSFER, 1);
      curl_multi_add_handle($mh, $ch[$i]);
    }

    // Start performing the request
    do {
        $execReturnValue = curl_multi_exec($mh, $runningHandles);
    } while ($execReturnValue == CURLM_CALL_MULTI_PERFORM);

    // Loop and continue processing the request
    while ($runningHandles && $execReturnValue == CURLM_OK) {

      // !!!!! changed this if and the next do-while !!!!!

      if (curl_multi_select($mh) != -1) {
        usleep(100);
      }

      do {
        $execReturnValue = curl_multi_exec($mh, $runningHandles);
      } while ($execReturnValue == CURLM_CALL_MULTI_PERFORM);

    }

    // Check for any errors
    if ($execReturnValue != CURLM_OK) {
      trigger_error("Curl multi read error $execReturnValue\n", E_USER_WARNING);
    }

    // Extract the content
    foreach($urls as $i => $url)
    {
      // Check for errors
      $curlError = curl_error($ch[$i]);
      if($curlError == "") {
        $res[$i] = curl_multi_getcontent($ch[$i]);
      } else {
        print "Curl error on handle $i: $curlError\n";
      }
      // Remove and close the handle
      curl_multi_remove_handle($mh, $ch[$i]);
      curl_close($ch[$i]);
    }
    // Clean up the curl_multi handle
    curl_multi_close($mh);

    // Print the response data
    print_r($res);
  }
}