『壹』 PHP 用 json_decode 讀取 數組的值 比如要我 "latestpri":"267.60", 這個值如何顯示
$arr = json_decode($josn,true) 你要取的值就是$arr['result'][1]['latestpri']
『貳』 php json 返回時的編碼問題!網頁編碼是utf8的
這個很正常呀
"\u4f60\u597d" 就是json編碼後的數據。是不是---『你好』 嘎嘎。
我猜你是用版的類似ajax的無刷新權提交吧
javascript有個函數eval()可以解碼json的
獲得這個數據的方法 :
var data=eval(sql_data)
其中sql_data就是資料庫返回的值
這樣之後變數data就是一個數組。
然後你可以處理數組。
alert(data[0][title] )-----就相當於alert('你好『)
『叄』 PHP循環讀取JSON
首先你要把JSON數據轉成數組,因為在php中JSON就是一個字元串。
$jsonData='{"list":[{
"goodsid":4290,
"post":[{
"param":"uin",
"name":"賬號"
},{
"param":"goodsid",
"name":"商品ID"
},{
"param":"number",
"name":"下單數專量"
}]
},';
//你的JSON數據有點亂,屬我復制的可能不對
$aryData=json_decode($jsonData,true);//轉碼為數組
var_mp($aryData);//列印
foreach($aryDataas$item){
var_mp($item);//列印每個條目
}
『肆』 php 循環遍歷json數據
$str = '{
"10924": {
"id": "10924",
"title": "天津",
"streamline_title": "狗不理",
"unit": "點",
"goods_type": "168",
"goods_type_title": "包子"
},
"10923": {
"id": "10923",
"title": "北京",
"streamline_title": "王府井",
"unit": "點",
"goods_type": "104",
"goods_type_title": "吃貨天堂"
},
"11982": {
"id": "11982",
"title": "南京",
"streamline_title": "夫子廟",
"unit": "點",
"goods_type": "351",
"goods_type_title": "燈會"
}
}';
foreach (json_decode($str) as $v)
{
echo "{$v->id} {$v->title}"; //其他的一樣的
}
『伍』 php json_encode後的json裡面的int類型變成string類型
在轉之前遍歷數組,把數組的數字類型的值轉換為string,
$arr=array(1,'a',3);
foreach($arr as $k=>$v){
if(is_numeric($v)){
$arr[$k]=$v.'';//$arr[$k]=(string)$v;
}
}
『陸』 PHP JSON循環輸出數組某個值,求大神解答
先$arr=json_decode(json_encode($name),true); 然後foreach
『柒』 php json格式化 循環輸出json的 text 就是紅線標注的地方
$.ajax(function(data){//ajax的其他參數就不多寫了專,返回屬data
varitem=data['statuses'];
varhtml='';
for(keyinitem){
html+='<li>'+item[key]['text']+'</li>'
}
alert(html);
});