這篇文章主要介紹了淺談PHP發送HTTP請求的幾種方式,整理一下除了使用 cURL 外 PHP 發送 HTTP 請求的方式,有興趣的可以了解一下。
PHP 開發中我們常用 cURL 方式封裝 HTTP 請求,什麼是 cURL?
cURL 是一個用來傳輸資料的工具,支援多種協議,如在 Linux 下用 curl 命令列可以發送各種 HTTP 請求。 PHP 的 cURL 是一個底層的函式庫,它能依照不同協定跟各種伺服器通訊,HTTP 協定是其中一種。
現代化的PHP 開發框架中經常會用到一個包,叫做GuzzleHttp,它是一個HTTP 客戶端,也可以用來發送各種HTTP 請求,那麼它的實現原理是什麼,與cURL 有何不同呢?
Does Guzzle require cURL?
No. Guzzle can use any HTTP handler to send requests. This means that Guzzle can be used with cURL, PHP's stream wrapper, sockets, and non-blocking libraries like React. You just need to configure an HTTP handler to use a different method of sending requests.
這是GuzzleHttp 文檔FAQ 中的一個Question,可見GuzzleHttp 不依賴cURL 函式庫,而支援多種發送HTTP 請求的方式。
PHP 傳送 HTTP 請求的方式
那麼這裡整理一下除了使用 cURL 外 PHP 傳送 HTTP 請求的方式。
1.cURL
2.stream流的方式
stream_context_create 作用:建立並傳回一個文本資料流並套用各種選項,可用於fopen(), file_get_contents() 等過程的逾時設定、代理伺服器、請求方式、頭資訊設定的特殊過程。
以一個POST 請求為例:
PHP
<?php /** * Created by PhpStorm. * User: tanteng * Date: 2017/7/22 * Time: 13:48 */ function post($url, $data) { $postdata = http_build_query( $data ); $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) ); $context = stream_context_create($opts); $result = file_get_contents($url, false, $context); return $result; }
3.socket方式
使用套接字建立連接,拼接HTTP 訊息發送資料進行HTTP 請求。
一個GET 方式的範例:
PHP
<?php $fp = fsockopen("www.example.com", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: www.example.com\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?>
本文介紹了發送HTTP 請求的幾種不同的方式。
以上是php幾種發送HTTP請求的方式詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!