当前位置:首页 > PHP教程 > php应用 > 列表

利用PHP fsockopen 模拟POST/GET传送数据的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-18 23:08:05 浏览: 评论:0 

使用php可以模拟post和get传送数据到别的网页或者是站点,那么怎么传送数据呢?下面由小编给大家介绍利用PHP fsockopen 模拟POST/GET传送数据的方法,需要的朋友一起看看吧。

使用php可以模拟 post 和 get 传送数据到别的网页或站点。

  1. $arr=array
  2.   'user'=>'test'
  3.   'password'=>'' 
  4. ); 
  5. sock_get($post_url,$arr); 
  6. sock_post($post_url,$arr);  
  7. //fsocket模拟get提交 
  8. function sock_get($url,$query=array()){ 
  9.   $query_str = http_build_query($query); 
  10.   $<span id="_nwp" style="width: auto; height: auto; float: none;"><a id="_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?adclass=&app_id=&c=news&cf=&ch=&di=&fv=&is_app=&jk=ecbeccb&k=info&k=info&kdi=&luki=&n=&p=baidu&q=_cpr&rb=&rs=&seller_id=&sid=bccbece&ssp=&stid=&t=tpclicked_hc&td=&tu=u&u=http%A%F%Fwww%Eixuexiwang%Ecom%Fphp%Dfunction%F%F%F%Ehtml&urlid=" target="_blank" mpid="" style="text-decoration: none;"><span style="color:#ff;font-size:px;width:auto;height:auto;float:none;">info</span></a></span> = parse_url($url); 
  11.   $port = isset($info['port'])? $info['port'] : ; 
  12.   $query_str = emptyempty($info["query"])?$query_str:$info["query"].'&'.$query_str
  13.   $fp = fsockopen($info["host"], $port$errno$errstr, ); 
  14.   if(!$fp){ 
  15.     return FALSE; 
  16.   } 
  17.   //$<span id="_nwp" style="width: auto; height: auto; float: none;"><a id="_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?adclass=&app_id=&c=news&cf=&ch=&di=&fv=&is_app=&jk=ecbeccb&k=head&k=head&kdi=&luki=&n=&p=baidu&q=_cpr&rb=&rs=&seller_id=&sid=bccbece&ssp=&stid=&t=tpclicked_hc&td=&tu=u&u=http%A%F%Fwww%Eixuexiwang%Ecom%Fphp%Dfunction%F%F%F%Ehtml&urlid=" target="_blank" mpid="" style="text-decoration: none;"><span style="color:#ff;font-size:px;width:auto;height:auto;float:none;">head</span></a></span> = "GET ".$info['path']."?".$info["query"]." HTTP/.\r\n"; 
  18.   $head = "GET ".$info['path']."?".$query_str." HTTP/.\r\n"
  19.   $head .= "Host: ".$info['host']."\r\n"
  20.   $head .= "\r\n"
  21.   $write = fputs($fp,$head); 
  22.   while(!feof($fp)){ 
  23.     $<span id="_nwp" style="width: auto; height: auto; float: none;"><a id="_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?adclass=&app_id=&c=news&cf=&ch=&di=&fv=&is_app=&jk=ecbeccb&k=line&k=line&kdi=&luki=&n=&p=baidu&q=_cpr&rb=&rs=&seller_id=&sid=bccbece&ssp=&stid=&t=tpclicked_hc&td=&tu=u&u=http%A%F%Fwww%Eixuexiwang%Ecom%Fphp%Dfunction%F%F%F%Ehtml&urlid=" target="_blank" mpid="" style="text-decoration: none;"><span style="color:#ff;font-size:px;width:auto;height:auto;float:none;">line</span></a></span> = fread($fp,); 
  24.     echo $line
  25.   } 
  26.   fclose($fp); 
  27.   return true; 
  28. //fsockopen模拟POST 
  29. function sock_post($url,$<span id="_nwp" style="width: auto; height: auto; float: none;"><a id="_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?adclass=&app_id=&c=news&cf=&ch=&di=&fv=&is_app=&jk=ecbeccb&k=data&k=data&kdi=&luki=&n=&p=baidu&q=_cpr&rb=&rs=&seller_id=&sid=bccbece&ssp=&stid=&t=tpclicked_hc&td=&tu=u&u=http%A%F%Fwww%Eixuexiwang%Ecom%Fphp%Dfunction%F%F%F%Ehtml&urlid=" target="_blank" mpid="" style="text-decoration: none;"><span style="color:#ff;font-size:px;width:auto;height:auto;float:none;">data</span></a></span>=array()){ 
  30.   $query = http_build_query($data);  
  31.   $info = parse_url($url); 
  32.   $fp = fsockopen($info["host"], , $errno$errstr, ); 
  33.   $head = "POST ".$info['path']."?".$info["query"]." HTTP/.\r\n"
  34.   $head .= "Host: ".$info['host']."\r\n"
  35.   $head .= "Referer: http://".$info['host'].$info['path']."\r\n"
  36.   $head .= "Content-type: application/x-www-form-urlencoded\r\n"
  37.   $head .= "Content-Length: ".strlen(trim($query))."\r\n"
  38.   $head .= "\r\n"
  39.   $head .= trim($query); 
  40.   $write = fputs($fp$head); 
  41.   while (!feof($fp)) 
  42.   { 
  43.     $line = fread($fp,); 
  44.     echo $line
  45.   } 

以上内容是给大家分享的利用PHP fsockopen 模拟POST/GET传送数据的方法,希望大家能够喜欢,更多有关php fsockopen知识请持续关注本站,谢谢。

Tags: fsockopen POST

分享到: