91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中的HTTP請求怎么使用socket進行發送

發布時間:2020-12-19 16:42:32 來源:億速云 閱讀:148 作者:Leah 欄目:開發技術

php中的HTTP請求怎么使用socket進行發送?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

瀏覽器提交請求的實質是向服務器發送一個請求信息,這個請求信息有請求行,請求頭,請求體(非必須)構成。服務器根據請求信息返回一個響應信息。連接斷開。

   HTTP請求的格式如下所示:

<request-line>
<headers>
<blank line>
[<request-body>]

  HTTP響應的格式與請求的格式十分相似:

<status-line>
<headers>
<blank line>
[<response-body>]

  我們可以利用HTTP發送請求的原理,可以重新考慮利用socket發送HTTP請求。

  Socket的英文原義是“孔”或“插座”。通常也稱作“套接字”,用于描述IP地址和端口,是一個通信鏈的句柄,可以用來實現不同虛擬機或不同計算機之間的通信。在Internet上的主機一般運行了多個服務軟件,同時提供幾種服務。每種服務都打開一個Socket,并綁定到一個端口上,不同的端口對應于不同的服務。如此看來,其實利用socket操作遠程文件和讀寫本地的文件一樣容易,把本地文件看成通過硬件傳輸,遠程文件通過網線傳輸就行了。

  因而可以將發送請求的考慮成 建立連接->打開socket接口(fsockopen())->寫入請求(fwrite())->讀出響應(fread()->關閉文件(fclose())。話不多說,直接上代碼:

<?php 
interface Proto {
  // 連接url
  function conn($url);
  //發送get查詢
  function get();
  // 發送post查詢
  function post();
  // 關閉連接
  function close();
}
class Http implements Proto {
  const CRLF = "\r\n";
  protected $errno = -1;
  protected $errstr = '';
  protected $response = '';
  protected $url = null;
  protected $version = 'HTTP/1.1';
  protected $fh = null;
  protected $line = array();
  protected $header = array();
  protected $body = array();
  public function __construct($url) {
    $this->conn($url);
    $this->setHeader('Host: ' . $this->url['host']);
  }
  // 此方法負責寫請求行
  protected function setLine($method) {
    $this->line[0] = $method . ' ' . $this->url['path'] . '?' .$this->url['query'] . ' '. $this->version;
  }
  // 此方法負責寫頭信息
  public function setHeader($headerline) {
    $this->header[] = $headerline; 
  }
  // 此方法負責寫主體信息
  protected function setBody($body) {
     $this->body[] = http_build_query($body);
  }
  // 連接url
  public function conn($url) {
    $this->url = parse_url($url);
    // 判斷端口
    if(!isset($this->url['port'])) {
      $this->url['port'] = 80;
    }
    // 判斷query
    if(!isset($this->url['query'])) {
      $this->url['query'] = '';
    }
    $this->fh = fsockopen($this->url['host'],$this->url['port'],$this->errno,$this->errstr,3);
  }
  //構造get請求的數據
  public function get() {
    $this->setLine('GET');
    $this->request();
    return $this->response;
  }
  // 構造post查詢的數據
  public function post($body = array()) {   
    $this->setLine('POST');
    // 設計content-type
    $this->setHeader('Content-type: application/x-www-form-urlencoded');
    // 設計主體信息,比GET不一樣的地方
    $this->setBody($body);
    // 計算content-length
    $this->setHeader('Content-length: ' . strlen($this->body[0]));
    $this->request();
    return $this->response;
  }
  // 真正請求
  public function request() {
    // 把請求行,頭信息,實體信息 放在一個數組里,便于拼接
    $req = array_merge($this->line,$this->header,array(''),$this->body,array(''));
    //print_r($req);
    $req = implode(self::CRLF,$req); 
    //echo $req; exit;
    fwrite($this->fh,$req);
    while(!feof($this->fh)) {
      $this->response .= fread($this->fh,1024);
    }
    $this->close(); // 關閉連接
  }
  // 關閉連接
  public function close() {
    fclose($this->fh);
  }
}

      利用此類發送一個簡單的GET請求:

<?php
//記得引用Http類
$url="http://home.jb51.net/u/DeanChopper/";
$http=new Http($url);
$response=$http->get();
print_r($response);

  返回值為信息,可以對響應信息進行進一步處理,得到自己想得到的內容。

我們來看下一個具體的實例

<?php
/**
 * 使用PHP Socket 編程模擬Http post和get請求
 * @author koma
 */
class Http{
  private $sp = "\r\n"; //這里必須要寫成雙引號
  private $protocol = 'HTTP/1.1';
  private $requestLine = "";
  private $requestHeader = "";
  private $requestBody = "";
  private $requestInfo = "";
  private $fp = null;
  private $urlinfo = null;
  private $header = array();
  private $body = "";
  private $responseInfo = "";
  private static $http = null; //Http對象單例
   
  private function __construct() {}
   
  public static function create() {
    if ( self::$http === null ) { 
      self::$http = new Http();
    }
    return self::$http;
  }
   
  public function init($url) {
    $this->parseurl($url);
    $this->header['Host'] = $this->urlinfo['host'];
    return $this;
  }
   
  public function get($header = array()) {
    $this->header = array_merge($this->header, $header);
    return $this->request('GET');
  }
   
  public function post($header = array(), $body = array()) {
    $this->header = array_merge($this->header, $header);
    if ( !empty($body) ) {
      $this->body = http_build_query($body);
      $this->header['Content-Type'] = 'application/x-www-form-urlencoded';
      $this->header['Content-Length'] = strlen($this->body);
    }
    return $this->request('POST');
  }
   
  private function request($method) {
    $header = "";
    $this->requestLine = $method.' '.$this->urlinfo['path'].'?'.$this->urlinfo['query'].' '.$this->protocol;
    foreach ( $this->header as $key => $value ) {
      $header .= $header == "" ? $key.':'.$value : $this->sp.$key.':'.$value;
    }
    $this->requestHeader = $header.$this->sp.$this->sp;
    $this->requestInfo = $this->requestLine.$this->sp.$this->requestHeader;
    if ( $this->body != "" ) {
      $this->requestInfo .= $this->body;
    }
    /*
     * 注意:這里的fsockopen中的url參數形式為"www.xxx.com"
     * 不能夠帶"http://"這種
     */
    $port = isset($this->urlinfo['port']) ? isset($this->urlinfo['port']) : '80';
    $this->fp = fsockopen($this->urlinfo['host'], $port, $errno, $errstr);
    if ( !$this->fp ) {
      echo $errstr.'('.$errno.')';
      return false;
    }
    if ( fwrite($this->fp, $this->requestInfo) ) {
      $str = "";
      while ( !feof($this->fp) ) {
        $str .= fread($this->fp, 1024);
      }
      $this->responseInfo = $str;
    }
    fclose($this->fp);
    return $this->responseInfo;
  }
   
  private function parseurl($url) {
    $this->urlinfo = parse_url($url);
  }
}
// $url = "http://news.163.com/14/1102/01/AA0PFA7Q00014AED.html";
$url = "http://localhost/httppro/post.php";
$http = Http::create()->init($url);
/* 發送get請求 
echo $http->get(array(
  'User-Agent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',
));
*/
 
/* 發送post請求 */
echo $http->post(array(
    'User-Agent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',
), array('username'=>'發一個中文', 'age'=>22));

看完上述內容,你們掌握php中的HTTP請求怎么使用socket進行發送的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜君县| 门源| 宜宾县| 横峰县| 日喀则市| 昌吉市| 抚宁县| 万山特区| 黄大仙区| 从江县| 都昌县| 多伦县| 同心县| 淮阳县| 孟村| 乐平市| 德庆县| 澄城县| 镇赉县| 东兴市| 永川市| 玉溪市| 凤凰县| 宜阳县| 武城县| 兴化市| 文安县| 和静县| 天全县| 抚州市| 右玉县| 南部县| 长葛市| 甘德县| 古交市| 荥经县| 双江| 乳山市| 阳朔县| 东乌珠穆沁旗| 清徐县|