可以使用以下函数来实现:
<?php
function posttohost($url, $data) {
$url = parse_url($url);
if (!$url) return "couldn't parse url";
if (!isset($url['port'])) { $url['port'] = ""; }
if (!isset($url['query'])) { $url['query'] = ""; }
$encoded = "";
while (list($k,$v) = each($data)) {
$encoded .= ($encoded ? "&" : "");
$encoded .= rawurlencode($k)."=".rawurlencode($v);
}
$fp = fsockopen($url['host'], $url['port'] ? $url['port'] : 80);
if (!$fp) return "failed to open socket to $url[host]";
fputs($fp, sprintf("post %s%s%s http/1.0n", $url['path'], $url['query'] ? "?" : "", $url['query']));
fputs($fp, "host: $url[host]n");
fputs($fp, "content-type: application/x-www-form-urlencodedn");
fputs($fp, "content-length: " . strlen($encoded) . "n");
fputs($fp, "connection: closenn");
fputs($fp, "$encodedn");
$line = fgets($fp,1024);
if (!eregi("^http/1.. 200", $line)) return;
$results = ""; $inheader = 1;
while(!feof($fp)) {
$line = fgets($fp,1024);
if ($inheader && ($line == "n" || $line == "rn")) {
$inheader = 0;
}
elseif (!$inheader) {
$results .= $line;
}
}
fclose($fp);
return $results;
}
?>
--------------------------------------------------------------------------------------------------
也可以这样
<?php
$url="www.mysite.com/test.php";
$ch = curl_init();
curl_setopt($ch, curlopt_url,"https://$url");
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_postfields, "data1=blah&data2=blah");
curl_exec ($ch);
curl_close ($ch);
?>
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!