作為php程序員一定會接觸http協(xié)議,也只有深入了解http協(xié)議,編程水平才會更進一步。最近我一直在學(xué)習(xí)php的關(guān)于http的編程,許多東西恍然大悟,受益匪淺。希望分享給大家。本文需要有一定http基礎(chǔ)的開發(fā)者閱讀。
今天給大家?guī)淼氖侨绾卫胹ocket發(fā)送GET,POST請求。我借用燕十八老師封裝好的一個Http類給進行說明。
在日常編程中相信很多人和我一樣大部分時間是利用瀏覽器向服務(wù)器提出GET,POST請求,那么可否利用其它方式提出GET,POST請求呢?答案必然是肯定的。了解過HTTP協(xié)議的人知道,瀏覽器提交請求的實質(zhì)是向服務(wù)器發(fā)送一個請求信息,這個請求信息有請求行,請求頭,請求體(非必須)構(gòu)成。服務(wù)器根據(jù)請求信息返回一個響應(yīng)信息。連接斷開。
HTTP請求的格式如下所示:
request-line>
headers>
blank line>
[request-body>]
HTTP響應(yīng)的格式與請求的格式十分相似:
status-line>
headers>
blank line>
[response-body>]
我們可以利用HTTP發(fā)送請求的原理,可以重新考慮利用socket發(fā)送HTTP請求。
Socket的英文原義是“孔”或“插座”。通常也稱作“套接字”,用于描述IP地址和端口,是一個通信鏈的句柄,可以用來實現(xiàn)不同虛擬機或不同計算機之間的通信。在Internet上的主機一般運行了多個服務(wù)軟件,同時提供幾種服務(wù)。每種服務(wù)都打開一個Socket,并綁定到一個端口上,不同的端口對應(yīng)于不同的服務(wù)。如此看來,其實利用socket操作遠程文件和讀寫本地的文件一樣容易,把本地文件看成通過硬件傳輸,遠程文件通過網(wǎng)線傳輸就行了。
因而可以將發(fā)送請求的考慮成 建立連接->打開socket接口(fsockopen())->寫入請求(fwrite())->讀出響應(yīng)(fread()->關(guān)閉文件(fclose())。話不多說,直接上代碼:
?php
interface Proto {
// 連接url
function conn($url);
//發(fā)送get查詢
function get();
// 發(fā)送post查詢
function post();
// 關(guān)閉連接
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);
}
//構(gòu)造get請求的數(shù)據(jù)
public function get() {
$this->setLine('GET');
$this->request();
return $this->response;
}
// 構(gòu)造post查詢的數(shù)據(jù)
public function post($body = array()) {
$this->setLine('POST');
// 設(shè)計content-type
$this->setHeader('Content-type: application/x-www-form-urlencoded');
// 設(shè)計主體信息,比GET不一樣的地方
$this->setBody($body);
// 計算content-length
$this->setHeader('Content-length: ' . strlen($this->body[0]));
$this->request();
return $this->response;
}
// 真正請求
public function request() {
// 把請求行,頭信息,實體信息 放在一個數(shù)組里,便于拼接
$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(); // 關(guān)閉連接
}
// 關(guān)閉連接
public function close() {
fclose($this->fh);
}
}
利用此類發(fā)送一個簡單的GET請求:
?php//記得引用Http類
$url="http://home.cnblogs.com/u/DeanChopper/";
$http=new Http($url);
$response=$http->get();
print_r($response);
返回值為信息,可以對響應(yīng)信息進行進一步處理,得到自己想得到的內(nèi)容。
以上就是php 利用socket發(fā)送GET,POST請求的實例代碼的詳細內(nèi)容,更多關(guān)于php 發(fā)送GET,POST請求的資料請關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- php自定義類fsocket模擬post或get請求的方法
- 使用PHP Socket 編程模擬Http post和get請求
- PHP請求Socket接口測試實例
- PHP socket 模擬POST 請求實例代碼
- PHP使用socket發(fā)送HTTP請求的方法