本篇文章給大家帶來的內容是關於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);