php解析页面json数据

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 15:50   1854   0

正常的是直接使用json_decode()即可。

$json ='[{"a":1,"b":2,"c":3,"d":4,"e":5},{"a":1,"b":2,"c":3,"d":4,"e":5}]';  
$wwww=json_decode($json);
Array
(
    [0] => stdClass Object
        (
            [a] => 1
            [b] => 2
            [c] => 3
            [d] => 4
            [e] => 5
        )

    [1] => stdClass Object
        (
            [a] => 1
            [b] => 2
            [c] => 3
            [d] => 4
            [e] => 5
        )

)

但是,我的问题是json_decode之后为空。

解决办法:$temp=stripslashes(html_entity_decode($temp));

html_entity_decode() 函数的作用是把 HTML 实体转换为字符。
stripslashes() 函数的作用是删除反斜杠。

因为我的json数组中有地址,带有/,所有要处理一下。

转载于:https://www.cnblogs.com/dane/p/6893868.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP