PHP Fire并忘记POST请求

时间:2013-01-29 16:29:40

标签: php post curl asynchronous fire-and-forget

我正在尝试在PHP中创建一个fire and forget方法,这样我就可以POST将数据发送到Web服务器,而不是等待响应。我读到这可以通过使用CURL来实现,如下面的代码所示:

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);
curl_exec($ch);
curl_close($ch);

但我不认为它的效果如我所料。例如,如果我发送请求的URL出错,则会导致我的脚本也抛出错误。如果它是火,忘记我会期望不会发生。

任何人都可以告诉我,我做错了什么或提供替代建议。我在本地和Linux上使用Windows进行开发,登台和生产环境。

更新

我在这里找到了另一种解决方案:http://blog.markturansky.com/archives/205

我把它清理成下面的代码:

function curl_post_async($url, $params = array())
{
    // create POST string   
    $post_params = array();
    foreach ($params as $key => &$val) 
    {
        $post_params[] = $key . '=' . urlencode($val);
    }
    $post_string = implode('&', $post_params);

    // get URL segments
    $parts = parse_url($url);

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

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

    // send output to $url handle
    fwrite($fp, $output);
    fclose($fp);
}

这个似乎对我有用。

这是一个有效的解决方案吗?

2 个答案:

答案 0 :(得分:8)

是的,如果你不关心你正在呼叫的URL的响应,那么使用套接字是可行的方法。这是因为套接字连接可以在发送请求后直接终止而无需等待,这正是您所追求的 - Fire和Forget。

但有两点注意事项:

  1. 它不再是cURL请求,因此值得重命名该功能。 :)
  2. 绝对值得检查套接字是否已被打开以防止脚本在以后失败时抱怨:

    $fp = fsockopen($parts['host'], $port, $errno, $errstr, 30);
    
    if ( ! $fp)
    {
       return FALSE;
    }
    
  3. 值得链接到您现在使用的fsocket()脚本的原始来源:
    http://w-shadow.com/blog/2007/10/16/how-to-run-a-php-script-in-the-background/

答案 1 :(得分:0)

这里是diggersworld的代码的清理版本,该版本还处理POST之后的其他HTTP方法,如果函数失败,则抛出有意义的异常。

/**
 * Send a HTTP request, but do not wait for the response
 *
 * @param string $method The HTTP method
 * @param string $url The url (including query string)
 * @param array $params Added to the URL or request body depending on method
 */
public function sendRequest(string $method, string $url, array $params = []): void
{
    $parts = parse_url($url);
    if ($parts === false)
        throw new Exception('Unable to parse URL');
    $host = $parts['host'] ?? null;
    $port = $parts['port'] ?? 80;
    $path = $parts['path'] ?? '/';
    $query = $parts['query'] ?? '';
    parse_str($query, $queryParts);

    if ($host === null)
        throw new Exception('Unknown host');
    $connection = fsockopen($host, $port, $errno, $errstr, 30);
    if ($connection === false)
        throw new Exception('Unable to connect to ' . $host);
    $method = strtoupper($method);

    if (!in_array($method, ['POST', 'PUT', 'PATCH'], true)) {
        $queryParts = $params + $queryParts;
        $params = [];
    }

    // Build request
    $request  = $method . ' ' . $path;
    if ($queryParts) {
        $request .= '?' . http_build_query($queryParts);
    }
    $request .= ' HTTP/1.1' . "\r\n";
    $request .= 'Host: ' . $host . "\r\n";

    $body = http_build_query($params);
    if ($body) {
        $request .= 'Content-Type: application/x-www-form-urlencoded' . "\r\n";
        $request .= 'Content-Length: ' . strlen($body) . "\r\n";
    }
    $request .= 'Connection: Close' . "\r\n\r\n";
    $request .= $body;

    // Send request to server
    fwrite($connection, $request);
    fclose($connection);
}