欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP socket 模擬POST 請(qǐng)求實(shí)例代碼

 更新時(shí)間:2016年07月18日 09:37:44   投稿:lqh  
這篇文章主要介紹了 PHP 使用socket 模擬POST的方法,結(jié)合實(shí)例分析了sockets 模擬 POST 常用技巧,需要的朋友可以參考下

我們用到最多的模擬POST請(qǐng)求幾乎都是使用php curl來(lái)實(shí)現(xiàn)了,沒(méi)考慮到PHP socket也可以實(shí)現(xiàn),今天看到朋友寫(xiě)了一文章,下面我來(lái)給大家分享一下PHP socket模擬POST請(qǐng)求實(shí)例。

以前模擬post請(qǐng)求俺都用PHP curl擴(kuò)展實(shí)現(xiàn)來(lái)著,沒(méi)想過(guò)PHP socket也可以實(shí)現(xiàn)。最近翻了下相關(guān)資料才發(fā)現(xiàn)原來(lái)沒(méi)有那么高深,只是以前一直沒(méi)有完全理解post的原理和本質(zhì)而已,其實(shí)就是發(fā)送給目的程序一個(gè)標(biāo)志為post的協(xié)議串如下:

POST /目的程序url HTTP/1.1

Accept: 接收信息格式

Referer: url來(lái)路

Accept-Language: 接收語(yǔ)言

Content-Type: application/x-www-form-urlencoded

Cookie: 網(wǎng)站cookie,不用俺過(guò)多解釋?zhuān)瑢?duì)吧?

User-Agent: 用戶(hù)代理,操作系統(tǒng)及版本、CPU 類(lèi)型、瀏覽器及版本等信息

Host: 要發(fā)送到的主機(jī)地址

Content-Length: 發(fā)送數(shù)據(jù)的長(zhǎng)度

Pragma: 本地是否存在緩存

Cache-Control: 是否需要網(wǎng)頁(yè)緩存

Connection: 連接狀態(tài)

username=fengdingbo&password=jb51.net   //post發(fā)送的數(shù)據(jù)

我想大家對(duì)表單的post方法提交數(shù)據(jù)應(yīng)該是最熟悉不過(guò)了,例如我們想把用戶(hù)名和密碼發(fā)送給某個(gè)頁(yè)面的時(shí)候,填寫(xiě)好相應(yīng)的input框,點(diǎn)擊提交按鈕,最后把這個(gè)表單發(fā)送到action程序的就是以上數(shù)據(jù)。知道了這一點(diǎn)我想就不難了

這時(shí)候我們只需要用php的socket打開(kāi)一個(gè)端口,例如80端口,把以上信息利用這個(gè)端口發(fā)送給目的程序就行了。

我們?nèi)绾卧谝粋€(gè)端口上建立一個(gè)socket通道呢?

在PHP中是如此簡(jiǎn)單呢!

官方給的原型:

resource fsockopen ( string $hostname [, int $port = -1 [, int &$errno [, string &$errstr [, float $timeout = ini_get("default_socket_timeout") ]]]] )

下邊是人類(lèi)的理解:

fsockopen(主機(jī)名稱(chēng),端口號(hào),錯(cuò)誤號(hào)的&變量,錯(cuò)誤提示的&變量,超時(shí)時(shí)間)
主機(jī)名稱(chēng)就是你需要發(fā)送數(shù)據(jù)的目的地;
端口號(hào)就是這個(gè)目的程序會(huì)在哪個(gè)端口等著你的數(shù)據(jù);
錯(cuò)誤號(hào)的&變量,這個(gè)是如果建立socket不成功的時(shí)候返回的錯(cuò)誤編號(hào);
錯(cuò)誤提示的&變量,是錯(cuò)誤的時(shí)候返回的錯(cuò)誤提示信息;
超時(shí)時(shí)間,就是post數(shù)據(jù)之后如果對(duì)方?jīng)]有回應(yīng)信息,等待的最長(zhǎng)時(shí)間。

如果不出意外(你正確的設(shè)置fsockopen()函數(shù)的參數(shù))的話(huà),一個(gè)socket通道現(xiàn)在已經(jīng)打開(kāi)了,我們下一步需要做的就是,通過(guò)這個(gè)打開(kāi)的通道把post請(qǐng)求協(xié)議發(fā)給目的程序,這時(shí)候可以使用fwrite或者fputs函數(shù)中的任意一個(gè),把post的請(qǐng)求格式發(fā)給fsockopen()打開(kāi)的資源句柄,這時(shí)候一個(gè)偉大的socket模擬的post請(qǐng)求就誕生了。

 代碼如下

<?php
/**
 * SOCKET擴(kuò)展函數(shù)
 * @copyright (c) 2013
 * @author Qiufeng <fengdingbo@gmail.com>
 * @link http://www.dbjr.com.cn
 * @version 1.0
 */
 
/**
 * Post Request
 *
 * @param string $url 
 * @param array $data
 * @param string $referer
 * @return array
 */
if ( ! function_exists('socket_post'))
{
 function socket_post($url, $data, $referer='')
 {
 if( ! is_array($data))
 {
 return;
 }
 
 $data = http_build_query($data);
 $url = parse_url($url);
 
 if ( ! isset($url['scheme']) || $url['scheme'] != 'http')
 {
 die('Error: Only HTTP request are supported !');
 }
 
 $host = $url['host'];
 $path = isset($url['path']) ? $url['path'] : '/';
 
 // open a socket connection on port 80 - timeout: 30 sec
 $fp = fsockopen($host, 80, $errno, $errstr, 30);
 
 if ($fp)
 {
 // send the request headers:
 $length = strlen($data);
 $POST = <<<HEADER
POST {$path} HTTP/1.1
Accept: text/plain, text/html
Referer: {$referer}
Accept-Language: zh-CN,zh;q=0.8
Content-Type: application/x-www-form-urlencodem 
Cookie: token=value; pub_cookietime=2592000; pub_sauth1=value; pub_sauth2=value
User-Agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17
Host: {$host}
Content-Length: {$length}
Pragma: no-cache
Cache-Control: no-cache
Connection: closern
{$data}
HEADER;
 fwrite($fp, $POST);
 $result = '';
 while(!feof($fp))
 {
 // receive the results of the request
 $result .= fread($fp, 512);
 }
 }
 else
 {
 return array(
  'status' => 'error',
  'error' => "$errstr ($errno)"
  );
 }
 
 // close the socket connection:
 fclose($fp);
 
 // split the result header from the content
 $result = explode("rnrn", $result, 2);
 
 // return as structured array:
 return array(
 'status' => 'ok',
 'header' => isset($result[0]) ? $result[0] : '',
 'content' => isset($result[1]) ? $result[1] : ''
 );
 }
}
 
print_r(socket_post('http://www.dbjr.com.cn/', array('name='=>'qiufeng','password'=>md5('www.dbjr.com.cn'))));
/* e.g: socket_post('http://www.dbjr.com.cn', array('name='=>'qiufeng','password'=>md5('jb51.net'))); */
/* End of file socket_helper.php */

實(shí)際上,當(dāng)socket通道打開(kāi)時(shí),我們傳的COOKIE是正確的話(huà),(截圖運(yùn)行的php代碼來(lái)自上邊,運(yùn)行后返回的網(wǎng)頁(yè)出現(xiàn)了我的用戶(hù)名,說(shuō)明對(duì)方網(wǎng)站已經(jīng)承認(rèn)我已經(jīng)登錄了)咱就可以干N多事情,比如刷帖,刷回復(fù)等,你們懂的,對(duì)吧?

好了上面還不夠有說(shuō)服力我們來(lái)看一個(gè)php socket實(shí)現(xiàn)圖片上傳

這個(gè)代碼有兩點(diǎn)要注意:

一是他是http的post 請(qǐng)求;

二是表單上傳協(xié)議,

下的請(qǐng)求 串適合任何語(yǔ)言.

代碼如下 

<?php 
 
  $remote_server = "jb51.net"; 
 
  $boundary = "---------------------".substr(md5(rand(0,32000)),0,10); 
   
  // Build the header 
  $header = "POST /api.php?action=twupload HTTP/1.0rn"; 
  $header .= "Host: {$remote_server}rn"; 
  $header .= "Content-type: multipart/form-data, boundary=$boundaryrn"; 
 
  /* 
  // attach post vars 
  foreach($_POST AS $index => $value){ 
   $data .="--$boundaryrn"; 
   $data .= "Content-Disposition: form-data; name="".$index.""rn"; 
   $data .= "rn".$value."rn"; 
   $data .="--$boundaryrn"; 
  } 
  */
  $file_name = "aaa.jpg"; 
  $content_type = "image/jpg"; 
 
  $data = ''; 
  // and attach the file 
  $data .= "--$boundaryrn"; 
 
  $content_file = file_get_contents('aaa.jpg'); 
  $data .="Content-Disposition: form-data; name="userfile"; filename="$file_name"rn"; 
  $data .= "Content-Type: $content_typernrn"; 
  $data .= "".$content_file."rn"; 
  $data .="--$boundary--rn"; 
 
  $header .= "Content-length: " . strlen($data) . "rnrn"; 
     // Open the connection 
 
 
  $fp = fsockopen($remote_server, 80); 
  // then just 
  fputs($fp, $header.$data); 
  // reader 
 
 while (!feof($fp)) { 
  echo fgets($fp, 128); 
 } 
 
fclose($fp);

希望本文對(duì)大家的 PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論