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

使用PHP Socket 编程模拟Http post和get请求

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-29 11:52:13 浏览: 评论:0 

这篇文章主要介绍了使用PHP Socket 编程模拟Http post和get请求 ,需要的朋友可以参考下,这里给大家分享一段使用PHP Socket 编程模拟Http post和get请求的代码,非常的实用,结尾部分我们再讨论下php模拟http请求的几种方法,代码如下:

  1. <?php /** 
  2.  * 使用PHP Socket 编程模拟Http post和get请求 
  3.  * @author koma 
  4.  */ class Http{ 
  5.     private $sp = "\r\n"//这里必须要写成双引号     private $protocol = 'HTTP/1.1'; 
  6.     private $requestLine = ""
  7.     private $requestHeader = ""
  8.     private $requestBody = ""
  9.     private $requestInfo = ""
  10.     private $fp = null; 
  11.     private $urlinfo = null; 
  12.     private $header = array(); 
  13.     private $body = ""
  14.     private $responseInfo = ""
  15.     private static $http = null; //Http对象单例     
  16.     private function __construct() {} 
  17.     public static function create() { 
  18.         if ( self::$http === null ) {  
  19.             self::$http = new Http(); 
  20.         } 
  21.         return self::$http
  22.     } 
  23.     public function init($url) { 
  24.         $this->parseurl($url); 
  25.         $this->header['Host'] = $this->urlinfo['host']; 
  26.         return $this
  27.     } 
  28.     public function get($header = array()) { 
  29.         $this->header = array_merge($this->header, $header); 
  30.         return $this->request('GET'); 
  31.     } 
  32.     public function post($header = array(), $body = array()) { 
  33.         $this->header = array_merge($this->header, $header); 
  34.         if ( !emptyempty($body) ) { 
  35.             $this->body = http_build_query($body); 
  36.             $this->header['Content-Type'] = 'application/x-www-form-urlencoded'
  37.             $this->header['Content-Length'] = strlen($this->body); 
  38.         } 
  39.         return $this->request('POST'); 
  40.     } 
  41.     private function request($method) { 
  42.         $header = ""
  43.         $this->requestLine = $method.' '.$this->urlinfo['path'].'?'.$this->urlinfo['query'].' '.$this->protocol; 
  44.         foreach ( $this->header as $key => $value ) { 
  45.             $header .= $header == "" ? $key.':'.$value : $this->sp.$key.':'.$value
  46.         } 
  47.         $this->requestHeader = $header.$this->sp.$this->sp; 
  48.         $this->requestInfo = $this->requestLine.$this->sp.$this->requestHeader; 
  49.         if ( $this->body != "" ) { 
  50.             $this->requestInfo .= $this->body; 
  51.         } 
  52.         /* 
  53.          * 注意:这里的fsockopen中的url参数形式为"www.xxx.com" 
  54.          * 不能够带"http://"这种 
  55.          */ 
  56.         $port = isset($this->urlinfo['port']) ? isset($this->urlinfo['port']) : '80'
  57.         $this->fp = fsockopen($this->urlinfo['host'], $port$errno$errstr); 
  58.         if ( !$this->fp ) { 
  59.             echo $errstr.'('.$errno.')'
  60.             return false; 
  61.         } 
  62.         if ( fwrite($this->fp, $this->requestInfo) ) { 
  63.             $str = ""
  64.             while ( !feof($this->fp) ) { 
  65.                 $str .= fread($this->fp, 1024); 
  66.             } 
  67.             $this->responseInfo = $str
  68.         } 
  69.         fclose($this->fp); 
  70.         return $this->responseInfo; 
  71.     } 
  72.     private function parseurl($url) { 
  73.         $this->urlinfo = parse_url($url); 
  74.     } 
  75. // $url = "http://news.163.com/14/1102/01/AA0PFA7Q00014AED.html"; 
  76. $url = "http://localhost/httppro/post.php"$http = Http::create()->init($url); /* 发送get请求  
  77. echo $http->get(array( 
  78.     'User-Agent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36', 
  79. )); 
  80. */ 
  81.  /* 发送post请求 */ echo $http->post(array
  82.         'User-Agent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36'
  83. ), array('username'=>'发一个中文''age'=>22)); 

php 模拟 http请求

方法一:利用php的socket编程来直接给接口发送数据来模拟post的操作。

建立两个文件post.php,getpost.php

post.php内容如下:

  1. <?php 
  2.  $flag = 0; 
  3.  $params = ''
  4.  $errno = ''
  5.  $errstr = ''
  6.  //要post的数据 
  7. $argv = array
  8.     'var1'=>'abc'
  9.     'var2'=>'how are you , my friend??'); 
  10. //构造要post的字符串 
  11. foreach ($argv as $key=>$value) { 
  12.     if ($flag!=0) { 
  13.         $params .= "&"
  14.         $flag = 1; 
  15.     } 
  16.     $params.= $key."="$params.= urlencode($value); 
  17.     $flag = 1; 
  18.     } 
  19.     $length = strlen($params); 
  20.      //创建socket连接 
  21.     $fp = fsockopen("localhost",81,$errno,$errstr,10) or exit($errstr."--->".$errno); 
  22.     //构造post请求的头 
  23.     $header  = "POST /flandy/getpost.php HTTP/1.1\r\n"
  24.     $header .= "Host:127.0.0.1\r\n"
  25.     $header .= "Referer:/flandy/post.php\r\n"
  26.     $header .= "Content-Type: application/x-www-form-urlencoded\r\n"
  27.     $header .= "Content-Length: ".$length."\r\n"
  28.     $header .= "Connection: Close\r\n\r\n"
  29.     //添加post的字符串 
  30.     $header .= $params."\r\n"
  31.     
  32.     //发送post的数据 
  33.     fputs($fp,$header); 
  34.     $inheader = 1; 
  35.     while (!feof($fp)) { 
  36.         $line = fgets($fp,1024); //去除请求包的头只显示页面的返回数据 
  37.         if ($inheader && ($line == "\n" || $line == "\r\n")) { 
  38.              $inheader = 0; 
  39.         } 
  40.         if ($inheader == 0) { 
  41.           echo $line
  42.         } 
  43.     } 
  44.  
  45. fclose($fp); 
  46. ?> 

getpost.php的内容如下:

  1. <?php 
  2. echo "this is the data posted"
  3. echo "<pre>"
  4. print_r($_REQUEST); 
  5. echo "</pre>"
  6. ?> 

结果输出:

  1. this is the data postedArray 
  2. [var1] => abc 
  3. [var2] => how are you , my friend?? 

以上代码在本机81端口下已经通过测试。

方法二:

使用PHP的curl扩展或HttpClient.class.php类,这两个非常类似,下面简单的列出curl的实现代码。

两个文件post2.php和getpost2.php

post2.php的内容如下:

  1. <?php 
  2. $psecode = 'NDE005'
  3. $website = 'www.baidu.com'
  4. $amt = 1; 
  5. $pwd = 123456; 
  6. $ch = curl_init(); 
  7. $curl_url = "http://localhost:81/flandy/getpost2.php?web=" . $website . 
  8. "&pwd=" . $pwd . "&action=check&pseid=" . $psecode . 
  9. "&amt=" . $amt
  10. curl_setopt($ch, CURLOPT_URL, $curl_url); 
  11. curl_setopt($ch, CURLOPT_POST, 1); 
  12. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//不直接输出,返回到变量 
  13. $curl_result = curl_exec($ch); 
  14. $result = explode(','$curl_result); 
  15. curl_close($ch); 
  16. print_r($result); 
  17. ?> 

getpost2.php的内容如下:

  1. <?php 
  2. echo "returndata<br>"
  3. echo "<pre>"
  4. print_r($_REQUEST); 
  5. echo "</pre>"
  6. ?> 

结果输出:

  1. Array ( [0] => returndataArray 
  2. [web] => 'wwwbaiducom' 
  3. [pwd] => 123456 
  4. [action] => check 
  5. [pseid] => 'NDE005' 
  6. [amt] => 1 

方法三:

这个要借助第三方类库HttpClient可以到这里下载:http://scripts.incutio.com/httpclient/

  1. <?php 
  2. require_once 'HttpClient.class.php'
  3. $params = array('web' => 'www.baidu.com'
  4. 'pwd' => '123456'
  5. 'action' => 'check'
  6. 'pseid' => 'NDE005'
  7. 'amt' => 1); 
  8. $pageContents = HttpClient::quickPost('http://localhost:81/flandy/getpost3.php'$params); 
  9. $result = explode(','$pageContents); 
  10. print_r($result); 
  11. ?> 

Tags: Socket Http post get

分享到: