fsockopen не будет отправлять данные поста - PullRequest
0 голосов
/ 15 июня 2011

решено: проблема была в типе контента. Должно было быть

Content-Type: application/x-www-form-urlencoded

Справочная ссылка: http://www.bradino.com/php/empty-post-array/

Я не могу получить POST данные для отправки. Я уже некоторое время прочесываю этот метод, и каждый раз, когда я запускаю тест, массив $_POST становится пустым.

    $output = new SimpleXMLElement($xml);
    $params = "method=updateOrder&xml=".$output;
    $response = Rest::Post("example.com", 80, "/resource/path.php", $params);

Выше приведен статический метод, который я вызываю HttpRequest с нужным методом. Ниже приведен метод, который получает суб-вызов и передает те же данные, но с именем метода. IE: POST.

private static function httpRequest($host, $port, $method, $path, $params)
            {
                //Check method  
                if(empty($method))
                    $method = "GET";
                $method = strtoupper($method);

                //Port
                if(empty($port))
                    $port = 80;

                //Build Querystring
                $data = "";
                if(!empty($params) && $method == "GET")
                    foreach($params as $name => $value)
                        {
                            $data .= $name . "=" . urlencode($value) . "&";
                        }
                if($method == "GET" && !empty($data))
                    $path .= "?" . $data;


                //connection
                $socket = fsockopen($host, $port);
                if(!$socket)
                    die("Socket failed, no connection.");

                //Write Data and headers to stream
                fputs($socket, $method ." ". $path . " HTTP/1.1\r\n");
                fputs($socket, "Host: " . $host . "\r\n");
                if($method === "POST")
                    {
                        fputs($socket, "Content-type: text/xml\r\n");
                        fputs($socket, "Content-length: " . strlen($params) . "\r\n");
                    }

                fputs($socket, "Connection: close\r\n\r\n");

                //Write body
                if($method === "POST")
                    fputs($socket, $params);

                //Gets headers
                $responseHeader = "";
                do
                {
                    $responseHeader .= fgets($socket, 1024);
                }
                while(strpos($responseHeader, "\r\n\r\n") === false);

                //Gets body
                $responseBody = "";
                while(!feof($socket))
                    $responseBody .= fgets($socket, 1024);

                //Done & return
                fclose($socket);
                return array(0=>$responseHeader, 1=>$responseBody);
            }

Ответы [ 2 ]

0 голосов
/ 07 января 2012

Помогает ли это?

Изменение

fputs($socket, "Content-type: text/xml\r\n");

до

fputs($socket, "Content-type: application/x-www-form-urlencoded\r\n");
0 голосов
/ 15 июня 2011

Вам следует рассмотреть возможность использования встроенной библиотеки cURL .

function httpRequest($host, $port = 80, $method = 'GET', $path = '/', $params = null)
{
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_HEADER, TRUE);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

  if ( ! empty($port) )
    curl_setopt($ch, CURLOPT_PORT, $port);

  if ( ! empty($method) && $method == 'POST' )
  {
    curl_setopt($ch, CURLOPT_URL, $host . ( ! empty($path) ? $path : '/' ));
    curl_setopt($ch, CURLOPT_POST, TRUE);

    if ( ! empty($params) )
      curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
  }
  else
    curl_setopt($ch, CURLOPT_URL, $host . ( ! empty($path) ? $path : '/' ) . ( ! empty($params) ? '?' . $params : null ));

  $result = curl_exec($ch);

  curl_close($ch);

  return explode("\r\n\r\n", $result, 2);
}

Функция, приведенная выше, вернет массив, содержащий заголовки и тело.

...