首頁  >  文章  >  後端開發  >  PHP發起HTTP請求有哪幾種方式?

PHP發起HTTP請求有哪幾種方式?

coldplay.xixi
coldplay.xixi原創
2020-07-01 09:18:054783瀏覽

PHP發起HTTP請求方式有:1、透過【file_get_contents】發送get請求;2、透過【CURL】發送get請求;3、透過【fsocket】發送get請求。

PHP發起HTTP請求有哪幾種方式?

PHP發起HTTP請求方式有:

  • curl仍然是最好的HTTP庫,沒有之一。可以解決任何複雜的應用場景中的HTTP 請求;

  • 檔案流式的HTTP請求比較適合處理簡單的HTTP POST/GET請求,但不適用於複雜的HTTP請求;

  • PECL_HTTP擴充寫程式碼更簡潔,省事, 但成熟度不好,程式介面不統一,文件和實例匱乏。

相關學習推薦:PHP程式設計從入門到精通

#1、file_get_contents發送get請求

<?php
/**
 * 发送post请求
 * @param string $url 请求地址
 * @param array $post_data post键值对数据
 * @return string
 */
function send_post($url, $post_data) {
    $postdata = http_build_query($post_data);
    $options = array(
        &#39;http&#39; => array(
            &#39;method&#39; => &#39;POST&#39;,
            &#39;header&#39; => &#39;Content-type:application/x-www-form-urlencoded&#39;,
            &#39;content&#39; => $postdata,
            &#39;timeout&#39; => 15 * 60 // 超时时间(单位:s)
        )
    );
    $context = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    return $result;
}
$post_data = array(
&#39;username&#39; => &#39;abcdef&#39;,
&#39;password&#39; => &#39;123456&#39;
);
send_post(&#39;http://xxx.com&#39;, $post_data);

2、透過CURL發送get請求

<?php
$ch=curl_init(&#39;http://www.xxx.com/xx.html&#39;);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_BINARYTRANSFER,true);
$output=curl_exec($ch);
$fh=fopen("out.html",&#39;w&#39;);
fwrite($fh,$output);
fclose($fh);

3、透過fsocket發送get請求

/**
 * Socket版本
 * 使用方法:
 * $post_string = "app=socket&amp;version=beta";
 * request_by_socket(&#39;blog.snsgou.com&#39;, &#39;/restServer.php&#39;, $post_string);
 */
function request_by_socket($remote_server,$remote_path,$post_string,$port = 80,$timeout = 30) {
$socket = fsockopen($remote_server, $port, $errno, $errstr, $timeout);
if (!$socket) die("$errstr($errno)");
fwrite($socket, "POST $remote_path HTTP/1.0");
fwrite($socket, "User-Agent: Socket Example");
fwrite($socket, "HOST: $remote_server");
fwrite($socket, "Content-type: application/x-www-form-urlencoded");
fwrite($socket, "Content-length: " . (strlen($post_string) + 8) . "");
fwrite($socket, "Accept:*/*");
fwrite($socket, "");
fwrite($socket, "mypost=$post_string");
fwrite($socket, "");
$header = "";
while ($str = trim(fgets($socket, 4096))) {
$header .= $str;
}
$data = "";
while (!feof($socket)) {
$data .= fgets($socket, 4096);
}
return $data;
}

以上是PHP發起HTTP請求有哪幾種方式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn