使用php可以模拟 post 和 get 传送数据到别的网页或站点
01 | $arr = array ( |
02 | 'user' => 'test' , |
03 | 'password' => '' |
04 | ); |
05 | sock_get( $post_url , $arr ); |
06 | sock_post( $post_url , $arr ); |
07 | //fsocket模拟get提交 |
08 | function sock_get( $url , $query = array ()){ |
09 | $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 = empty ( $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 | } |
29 | //fsockopen模拟POST |
30 | 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 ()){ |
31 | $query = http_build_query( $data ); |
32 | $info = parse_url ( $url ); |
33 | $fp = fsockopen ( $info [ "host" ], , $errno , $errstr , ); |
34 | $head = "POST " . $info [ 'path' ]. "?" . $info [ "query" ]. " HTTP/.\r\n" ; |
35 | $head .= "Host: " . $info [ 'host' ]. "\r\n" ; |
36 | $head .= "Referer: http://" . $info [ 'host' ]. $info [ 'path' ]. "\r\n" ; |
37 | $head .= "Content-type: application/x-www-form-urlencoded\r\n" ; |
38 | $head .= "Content-Length: " . strlen (trim( $query )). "\r\n" ; |
39 | $head .= "\r\n" ; |
40 | $head .= trim( $query ); |
41 | $write = fputs ( $fp , $head ); |
42 | while (! feof ( $fp )) |
43 | { |
44 | $line = fread ( $fp ,); |
45 | echo $line ; |
46 | } |
47 | } |