由于漫长的等待,替代CURL

时间:2010-05-12 21:26:28

标签: php curl

Hey Guys我目前使用CURL运行PHP脚本将数据发送到另一台服务器,运行可能需要一分钟才能运行的PHP脚本。 此服务器不提供任何数据。但是CURL请求仍然需要等待它完成,然后它会加载其余的orignal页面。我希望我的PHP脚本只是将数据发送到其他服务器,然后不等待答案。

所以我的问题是我应该如何解决这个问题?我读过CURL总是要等。你有什么建议吗?

谢谢!

5 个答案:

答案 0 :(得分:10)

这可能是一个有用的起点,公然copypasted from here

function curl_post_async($url, $params)
{
    foreach ($params as $key => &$val) {
      if (is_array($val)) $val = implode(',', $val);
        $post_params[] = $key.'='.urlencode($val);
    }
    $post_string = implode('&', $post_params);

    $parts=parse_url($url);

    $fp = fsockopen($parts['host'], 
        isset($parts['port'])?$parts['port']:80, 
        $errno, $errstr, 30);

    //pete_assert(($fp!=0), "Couldn't open a socket to ".$url." (".$errstr.")");(optional)

    $out = "POST ".$parts['path']." HTTP/1.1\r\n";
    $out.= "Host: ".$parts['host']."\r\n";
    $out.= "Content-Type: application/x-www-form-urlencoded\r\n";
    $out.= "Content-Length: ".strlen($post_string)."\r\n";
    $out.= "Connection: Close\r\n\r\n";
    if (isset($post_string)) $out.= $post_string;

    fwrite($fp, $out);
    fclose($fp);
}

答案 1 :(得分:3)

http://php.net/manual/en/function.fsockopen.php


$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)
\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: www.example.com\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); }

答案 2 :(得分:1)

您可以在PHP网页连接的另一台计算机上创建服务器套接字。这样,您就可以决定协议了。否则,请查看后台流程是否符合您的需求。

答案 3 :(得分:0)

我认为您可以在php中设置max_execution_time,以便在时间限制后停止脚本工作。它不是“专业”解决方案,但它有效!

答案 4 :(得分:-1)

使用TIMEOUT标志在一个时间范围内退出会更好。

curl_easy_setopt(curl, CURLOPT_TIMEOUT, sec); // sec is int variable

那是C代码,让自己适应。