1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** * POST請求
* **/
public static function post( $url , $postData ) {
$curl = curl_init();
curl_setopt( $curl , CURLOPT_POST, true);
curl_setopt( $curl , CURLOPT_RETURNTRANSFER, true);
curl_setopt( $curl ,CURLOPT_REFERER, "http://jinrong2.baidu.com" );
curl_setopt( $curl ,CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0" );
curl_setopt( $curl , CURLOPT_URL, $url );
curl_setopt( $curl , CURLOPT_POSTFIELDS, $postData );
$result = curl_exec( $curl );
curl_close( $curl );
return $result ;
}
/**
* GET請求
* **/
public static function getHttp( $url ){
$curl = curl_init();
curl_setopt( $curl , CURLOPT_POST, false);
curl_setopt( $curl , CURLOPT_RETURNTRANSFER, true);
curl_setopt( $curl ,CURLOPT_REFERER, "http://jinrong2.baidu.com" );
curl_setopt( $curl ,CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0" );
curl_setopt( $curl , CURLOPT_URL, $url );
$result = curl_exec( $curl );
curl_close( $curl );
return $result ;
}
|
PHP傳送POST和GET請求
版權宣告:原創作品,如需轉載,請註明出處。否則將追究法律責任
本文轉自 夢朝思夕 51CTO部落格,原文連結:http://blog.51cto.com/qiangmzsx/1618904
相關文章
- cURL實現傳送Get和Post請求(PHP)PHP
- java傳送GET和post請求Java
- httprequest- post- get -傳送請求HTTP
- file_get_contents傳送post請求
- postman(二):使用postman傳送get or post請求Postman
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- Vue中通過Axios向SpringBoot傳送get和post請求VueiOSSpring Boot
- Golang:使用go-resty/resty傳送http請求get和postGolangRESTHTTP
- Postman傳送Post請求Postman
- Java傳送Post請求Java
- java apache commons HttpClient傳送get和post請求的學習整理JavaApacheHTTPclient
- 傳送GET請求 示例
- PHP 傳送GET 和 POST資料的方法分析PHP
- python傳送HTTP POST請求PythonHTTP
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,jsoJavaHTTPclient協議JS
- linux用curl傳送post請求Linux
- Android 傳送HTTP GET POST 請求以及通過 MultipartEntityBuilder 上傳檔案(二)AndroidHTTPUI
- 使用Postman傳送POST請求的指南Postman
- 以Raw的方式傳送POST請求
- RestTemplate exchange GET POST請求傳引數DEMOREST
- java傳送get請求帶引數Java
- curl 傳送 POST 請求的四種方式
- 【Postman】6 Postman 傳送post請求-Json格式PostmanJSON
- 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
- python3 實現 get 和 post 請求Python
- get和post請求的區別(面試)面試
- POST與GET請求區別
- jmeter之傳送json資料的post請求JMeterJSON
- vue 發起get請求和post請求Vue
- get請求和post請求的區別
- PHP與Curl採用的GET,POST,JSON方式請求APIPHPJSONAPI
- 043-socket程式設計傳送GET請求程式設計
- http請求中get和post方法的區別HTTP
- 原生js實現Ajax請求,包含get和postJS
- GET和POST方式請求API介面資料返回API