);
}
curl_close($ch);
或者:
$fp = fsockopen($server, 80);
fputs($fp, "POST $path HTTP/1.0
");
fputs($fp, "Host: $server
");
fputs($fp, "Content-Type: text/xml
");
fputs($fp, "Content-Length: $contentLength
");
fputs($fp, "Connection: close
");
fputs($fp, "
"); // all headers sent
fputs($fp, $xml_data);
$result = ;
while (!feof($fp)) {
$result .= fgets($fp, 128);
}
return $result;