cURL實現傳送Get和Post請求(PHP)
1.cURL介紹
cURL 是一個利用URL語法規定來傳輸檔案和資料的工具,支援很多協議,如HTTP、FTP、TELNET等。最爽的是,PHP也支援 cURL 庫。本文將介紹 cURL 的一些高階特性,以及在PHP中如何運用它。
2.基本結構
在學習更為複雜的功能之前,先來看一下在PHP中建立cURL請求的基本步驟:
(1)初始化
curl_init()
(2)設定變數
curl_setopt()
最為重要,一切玄妙均在此。有一長串cURL引數可供設定,它們能指定URL請求的各個細節。要一次性全部看完並理解可能比較困難,所以今天我們只試一下那些更常用也更有用的選項。
(3)執行並獲取結果
curl_exec()
(4)釋放cURL控制程式碼
curl_close()
3.cURL實現Get和Post
3.1 Get方式實現
//初始化
$ch = curl_init();
//設定選項,包括URL
curl_setopt($ch, CURLOPT_URL, "http://www.nettuts.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
//執行並獲取HTML文件內容
$output = curl_exec($ch);
//釋放curl控制程式碼
curl_close($ch);
//列印獲得的資料
print_r($output);
3.2 Post方式實現
$url = "http://localhost/web_services.php";
$post_data = array ("username" => "bob","key" => "12345");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// post資料
curl_setopt($ch, CURLOPT_POST, 1);
// post的變數
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
//列印獲得的資料
print_r($output);
以上方式獲取到的資料是json格式的,使用json_decode函式解釋成陣列。
$output_array = json_decode($output,true);
如果使用json_decode($output)解析的話,將會得到object型別的資料。
附wafer2-sdk中的Rquest庫
<?php
namespace QCloud_WeApp_SDK\Helper;
class Request {
/**
* @codeCoverageIgnore
*/
public static function get($options) {
$options['method'] = 'GET';
return self::send($options);
}
public static function jsonPost($options) {
if (isset($options['data'])) {
$options['data'] = json_encode($options['data']);
}
$options = array_merge_recursive($options, array(
'method' => 'POST',
'headers' => array('Content-Type: application/json; charset=utf-8'),
));
return self::send($options);
}
public static function send($options) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $options['method']);
curl_setopt($ch, CURLOPT_URL, $options['url']);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
if (isset($options['headers'])) {
curl_setopt($ch, CURLOPT_HTTPHEADER, $options['headers']);
}
if (isset($options['timeout'])) {
curl_setopt($ch, CURLOPT_TIMEOUT_MS, $options['timeout']);
}
if (isset($options['data'])) {
curl_setopt($ch, CURLOPT_POSTFIELDS, $options['data']);
}
$result = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$body = json_decode($result, TRUE);
if ($body === NULL) {
$body = $result;
}
curl_close($ch);
return compact('status', 'body');
}
}
相關文章
- java傳送GET和post請求Java
- linux用curl傳送post請求Linux
- httprequest- post- get -傳送請求HTTP
- file_get_contents傳送post請求
- curl 傳送 POST 請求的四種方式
- postman(二):使用postman傳送get or post請求Postman
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- PHP與Curl採用的GET,POST,JSON方式請求APIPHPJSONAPI
- Linux curl 命令模擬 POST/GET 請求Linux
- Vue中通過Axios向SpringBoot傳送get和post請求VueiOSSpring Boot
- Golang:使用go-resty/resty傳送http請求get和postGolangRESTHTTP
- python3 實現 get 和 post 請求Python
- Postman傳送Post請求Postman
- Java傳送Post請求Java
- java apache commons HttpClient傳送get和post請求的學習整理JavaApacheHTTPclient
- 原生js實現Ajax請求,包含get和postJS
- 傳送GET請求 示例
- PHP 傳送GET 和 POST資料的方法分析PHP
- python傳送HTTP POST請求PythonHTTP
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,jsoJavaHTTPclient協議JS
- 封裝 PHP curl http 請求 (全) Composer 安裝 httpbuilder,支援 GET,POST,PUT,DELETE封裝PHPHTTPUIdelete
- Android 傳送HTTP GET POST 請求以及通過 MultipartEntityBuilder 上傳檔案(二)AndroidHTTPUI
- shell指令碼:批次傳送curl請求指令碼
- node.js的express模組實現GET和POST請求Node.jsExpress
- 使用Postman傳送POST請求的指南Postman
- 以Raw的方式傳送POST請求
- PHP curl 請求PHP
- RestTemplate exchange GET POST請求傳引數DEMOREST
- java傳送get請求帶引數Java
- 【Postman】6 Postman 傳送post請求-Json格式PostmanJSON
- 在沒有curl和wget情況下傳送HTTP請求wgetHTTP
- wireshark抓包curl傳送http2請求HTTP
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,json,xml,txt資料JavaHTTPclient協議JSONXML
- Go HTTP GET 請求可以傳送 body 嗎GoHTTP
- Go使用net/http庫傳送GET請求GoHTTP
- 優雅地使用GET和POST請求方法
- http請求之get和post的區別HTTP
- get和post請求的區別(面試)面試