当前位置:首页 > PHP教程 > PHP高级教程

php socket方式提交的post详解

<? 
/* 
** post报文到主机 
*/ 
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); 


$port = $url['port'] ? $url['port'] : 80; 
$fp = fsockopen($url['host'], $port, $errno, $errstr); 
if (!$fp) return "failed to open socket to $url[host] $port error: $errno - $errstr"; 

fputs($fp, sprintf("post %s%s%s http/1.0\n", $url['path'], $url['query'] ? "?" : "", $url['query'])); 
fputs($fp, "host: $url[host]\n"); 
fputs($fp, "content-type: application/x-www-form-urlencoded\n"); 
fputs($fp, "content-length: " . strlen($encoded) . "\n"); 
fputs($fp, "connection: close\n\n"); 

fputs($fp, "$encoded\n"); 

$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 == "\r\n")) { 
$inheader = 0; 

elseif (!$inheader) { 
$results .= $line; 


fclose($fp); 

return $results; 
}/* end function posttohost */ 
?>

【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!