我想用fsock发送post变量, 但是当我尝试这个时:
$post_arr = array ("a" => "b");
$addr = 'http://1.2.3.4/confirmation.html';
$fp = fsockopen($addr, 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$req = '';
foreach ($post_arr as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&" . $key . "=" . $value;
}
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
fwrite($fp, $header);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
我得到'无法找到套接字传输“http”', 任何想法为什么?
答案 0 :(得分:7)
fsockopen()
打开一个套接字。套接字对Layer5 +协议(如HTTP)一无所知。
$fp = fsockopen('1.2.3.4', 80, $errno, $errstr, 30);
要请求某个路径,请在请求中发送:GET /confirmation.html
要指定域,请在Host
标题中发送:Host: 1.2.3.4
您可能需要考虑使用curl
扩展程序。通常没有充分的理由在PHP中手动构建HTTP请求。