当前位置: 移动技术网 > IT编程>开发语言>PHP > php socket方式提交的post详解

php socket方式提交的post详解

2019年05月11日  | 移动技术网IT编程  | 我要评论
<? 
/* 
** 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 */ 
?>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网