file_get_contents 得到的字符,使用 json_decode 解析成json。
創(chuàng)新互聯(lián)公司自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都做網(wǎng)站、成都網(wǎng)站設(shè)計網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元鎮(zhèn)江做網(wǎng)站,已為上家服務(wù),為鎮(zhèn)江各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
$xxx_json = json_decode($xxx_response);
一般使用php發(fā)送請求,獲取返回的數(shù)據(jù),進行解析;
?php
$url="接口地址";
//發(fā)送請求獲取返回值,file_get_contents只支持get請求,post使用curl
$json = file_get_contents($url);
//把json數(shù)據(jù)轉(zhuǎn)化成數(shù)組
$data = json_decode($json,true);
//打印看看
print_r($data);
?
可以用$obj=key 的方式直接讀取 ?也可以先轉(zhuǎn)換為數(shù)組 ?用遍歷數(shù)組的方法讀取
?php
$json?=?'{"a":100,"b":200,"c":300,"d":400,"e":500}';
//首先將json字符串轉(zhuǎn)換成關(guān)聯(lián)數(shù)組
$arr=json_decode($json,?true);?
//然后循環(huán)讀取數(shù)據(jù)
foreach($arr?as?$item){
echo?$item;
echo?"br/";
}
?
運行結(jié)果:
100
200
300
400
500
PHP直接的函數(shù)獲取或生成
用php生成json格式:json_encode('內(nèi)容');
用php讀取json數(shù)據(jù):json_deconde('json數(shù)據(jù)');
?php
header("Content-type: text/json; charset=utf-8");
$arr = array(
array('id'=1,'name'='aaaa'),
array('id'=2,'name'='bbbb')
);
echo json_encode($arr);
?
首先你需要使用對方約定方式獲取,然后考慮是否使用緩存,最后獲取到數(shù)據(jù)后使用json_decode函數(shù)解析成數(shù)組格式,接下來就是自己的邏輯代碼了。