牛骨文教育服务平台(让学习变的简单)
博文笔记

PHP利用fsockopen POST HTTP请求(URL)并获取返回值

创建时间:2013-08-01 投稿人: 浏览次数:2865
  1. <?php 
  2.   $srv_ip = "192.168.1.5";//你的目标服务地址. 
  3.   $srv_port = 80;//端口 
  4.   $url = "http://localhost/fsock.php"; //接收你post的URL具体地址  
  5.   $fp = ""; 
  6.   $errno = 0;//错误处理 
  7.   $errstr = "";//错误处理 
  8.   $timeout = 10;//多久没有连上就中断 
  9.   $post_str = "username=demo&password=hahaha";//要提交的内容. 
  10.   //打开网络的 Socket 链接。 
  11.   $fp = fsockopen($srv_ip,$srv_port,$errno,$errstr,$timeout); 
  12.   if (!$fp){ 
  13.    echo("fp fail"); 
  14.   } 
  15.   $content_length = strlen($post_str); 
  16.   $post_header = "POST $url HTTP/1.1 "; 
  17.   $post_header .= "Content-Type: application/x-www-form-urlencoded "; 
  18.   $post_header .= "User-Agent: MSIE "; 
  19.   $post_header .= "Host: ".$srv_ip." "; 
  20.   $post_header .= "Content-Length: ".$content_length." "; 
  21.   $post_header .= "Connection: close "; 
  22.   $post_header .= $post_str." "; 
  23.   fwrite($fp,$post_header); 
  24.  
  25.   $inheader = 1; 
  26.   while(!feof($fp)){//测试文件指针是否到了文件结束的位置 
  27.    $line = fgets($fp,1024); 
  28.    //去掉请求包的头信息 
  29.    if ($inheader && ($line == " " || $line == " ")) { 
  30.          $inheader = 0; 
  31.     } 
  32.     if ($inheader == 0) { 
  33.       echo $line; 
  34.     } 
  35.   } 
  36.   fclose($fp); 
  37.   unset ($line); 
  38. ?> 

 简要说明:代码第二行是你的IP地址或域名,第四行是你要POST的页面的具体地址,本例用的是fsock.php,fsock.php内容如下:

  1. <?php 
  2.     echo "username:".$_POST["username"]."<br/>"; 
  3.     echo "password:".$_POST["password"]; 
  4. ?> 

结果为:

username:demo


password:hahaha

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。