首页 > 后端开发 > php教程 > 求大侠讲解json字符串处理方案,多谢

求大侠讲解json字符串处理方案,多谢

WBOY
发布: 2016-06-13 10:05:53
原创
827 人浏览过

求大侠讲解json字符串处理方案,谢谢

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php $string='{    "fenxiao_products_ge_response": {        "total_results": 10,        "products": {            "fenxiao_product": [{                "pid": 1255,                "name": "jayzhou",                "productcat_id": 444,                "standard_price": "5",                "cost_price": "5",                "retail_price_low": "10.56",                "retail_price_high": "10.56",                "outer_id": 4444,                "quantity": 444,                "alarm_number": 444,                "pictures": "http://img01.taobaocdn.com/xxx.jpg,http://img01.taobaocdn.com/xxx.jpg",                "desc_path": "http://img03.taobaocdn.com/xxx.dpc",                "prov": "浙江",                "city": "杭州",                "postage_type": "12",                "postage_id": 5545,                "postage_ordinary": "10.56",                "postage_fast": "10.56",                "postage_ems": "12.2",                "have_invoice": true,                "have_guarantee": true,                "status": "up",                "items_count": 5,                "orders_count": 5,                "created": "2000-01-01 00:00:00",                "modified": "2000-01-01 00:00:00",                "skus": {                    "fenxiao_sku": [{                        "id": "jayzhou",                        "name": "如鞋子的sku:“红色,35”",                        "cost_price": "1",                        "quantity": "1",                        "outer_id": "1"                    }]                }            }]        }    }}';    $array=(array)json_decode($string,true);    var_dump($array);?>
登录后复制



求解 json_decode()函数无法处理该json字符串求各位大侠赐教 小弟万分感谢 !

------解决方案--------------------
$string = iconv('gbk', 'utf-8', $string);
$array=json_decode($string,true);
var_dump($array);

json_decode 只能处理 utf-8 编码的 json 串
------解决方案--------------------
GBK编码吧?

如下

$array=(array)json_decode(iconv('GBK', 'UTF-8', $string),true);
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板