使用fsockopen POST到GET查询URL

时间:2012-01-07 01:58:02

标签: php post get fsockopen

使用fsockopen这个原始HTTP调用有什么问题?

POST /api/?action=report HTTP/1.1
Host: www.webhosting-performance.com
Content-Type: application/x-www-form-urlencoded
Conent-Length: 9
Connection: close

test=test

远程脚本说var_dump($ _ POST)为空。

我的PHP代码片段如下所示:

if (ini_get('allow_url_fopen') > 0) {

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

  if (!$fp) throw new Exception("Problem with $url, $errstr");

  $post_string = $post_fields ? http_build_query($post_fields) : '';

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

  fwrite($fp, $out);

  // ...

} else {
  // use curl
}

2 个答案:

答案 0 :(得分:2)

你基本上只有一个错字:

Conent-Length: 9

查看t

中缺少的Content-Length:

真正的问题是(不要诋毁你自己构建内容的努力),为什么不使用cURLPEARs HTTP Request类?

答案 1 :(得分:-1)

为什么不使用PEAR::Http_Request2