php如何使用curl方法請求Java介面?php用curl方法請求Java介面的兩種方法

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於php如何使用curl方法請求Java介面?php用curl方法請求Java介面的兩種方法,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

CURL是一個非常強大的開源庫,支援很多協議,我們可以使用curl方法解決PHP請求JAVA介面
1.通過POST方法請求java介面:

function http_post_advertise($url,$data){        //封裝curl方法$ch = curl_init();     //初始化curl_setopt($ch, CURLOPT_URL, $url);      //請求地址curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_POST, true);//https協議需要以下兩行,否則請求不成功curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);   curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//post方法所需要的參數curl_setopt($ch, CURLOPT_POSTFIELDS, $data);curl_setopt($ch, CURLOPT_HTTPHEADER,array());$result = curl_exec($ch);curl_close($ch);return $result;        //返回所擷取的方法}$url=' $data1='PC';$data2='1530523065500000';$data_article=['product'=>$data1,'companyId'=>$data2,'advBitId'=>'1531116879086000'];$http_article=http_post_advertise($url,$data_article);   //調用方法$arr_article= json_decode($http_article,true);    //擷取json資料並轉換成php能解析的格式$res_article=$arr_article['result']; //擷取json資料result部分

2.通過GET方法請求JAVA介面:

$a="hello";$url=' $html = file_get_contents($url);$arr = json_decode($html,true);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.