fsockopen&在PHP中关闭连接但继续执行脚本

时间:2011-04-06 08:26:20

标签: php http soap http-headers buffer

我有一个PHP脚本,在返回数据后需要关闭连接,但继续执行:

<?php
  // Some code

  ob_start();

  echo $data;

  header("Content-type: application/soap+xml;charset=UTF-8\r\n");
  header("Content-Length: " . ob_get_length() . "\r\n");
  header("Content-Encoding: none\r\n");
  header("Connection: close\r\n\r\n");

  // Print buffer
  ob_end_flush();
  ob_flush();
  flush();

  // Close connection

  // Some code, continue executing
?>

它适用于某些客户端,但我需要使用其他PHP脚本进行调用

<?php
    // Some code

    $connection = @fsockopen($url['host'], $url['port'], $errno, $errstr);

    if (!$connection) { 
      throw new Exception('');
    }

    fputs($connection, "POST {$url['path']} HTTP/1.1\r\n");
    fputs($connection, "Host: {$url['host']}\r\n");
    fputs($connection, "Content-type: text/xml;charset=UTF-8\r\n");
    fputs($connection, "SOAPAction: \"{$soapaction}\"\r\n");
    fputs($connection, "Content-Length: " . strlen($request) . "\r\n");
    fputs($connection, "Content-Encoding: none\r\n");
    fputs($connection, "Connection: close\r\n\r\n");
    fputs($connection, $request);

    $respponse = '';
    while(!feof($connection)) {
      // receive the results of the request
      $response .= fgets($connection, 512);
    }

    // some code
?>

问题是:只有当所有第一个脚本都结束时,fsockopen才会在接收数据时关闭连接。

我唯一的想法是检查长度并在收到数据时关闭手册。

1 个答案:

答案 0 :(得分:0)

您的第一个(服务器)脚本将保持套接字打开,直到它终止。 套接字比HTTP更低级别,当您发送Connection:close标头时,第二个(客户端)脚本应该自己处理它而不是fsockopen函数。

做你做的事情(计算响应中的字节数)是处理它的正确方法。