作為php程式設計師一定會接觸http協議,也只有深入瞭解http協議,程式設計水平才會更進一步。最近我一直在學習php的關於http的程式設計,許多東西恍然大悟,受益匪淺。希望分享給大家。本文需要有一定http基礎的開發者閱讀。
今天給大家帶來的是如何利用socket傳送GET,POST請求。我借用燕十八老師封裝好的一個Http類給進行說明。
在日常程式設計中相信很多人和我一樣大部分時間是利用瀏覽器向伺服器提出GET,POST請求,那麼可否利用其它方式提出GET,POST請求呢?答案必然是肯定的。瞭解過HTTP協議的人知道,瀏覽器提交請求的實質是向伺服器傳送一個請求資訊,這個請求資訊有請求行,請求頭,請求體(非必須)構成。伺服器根據請求資訊返回一個響應資訊。連線斷開。
HTTP請求的格式如下所示:
1 <request-line> 2 <headers> 3 <blank line> 4 [<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.cnblogs.com/u/DeanChopper/"; $http=new Http($url); $response=$http->get(); print_r($response);
返回值為資訊,可以對響應資訊進行進一步處理,得到自己想得到的內容。