博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
***php解析JSON二维数组字符串(json_decode函数第二个参数True和False的区别)
阅读量:6092 次
发布时间:2019-06-20

本文共 3144 字,大约阅读时间需要 10 分钟。

客户端的请求体中的数据:[{"msg_id": 1, "msg_status": "HAS_READ" }, { "msg_id": 2, "msg_status": "HAS_READ" }] 是一个二维数组字符串
$json_data = json_decode($GLOBALS['HTTP_RAW_POST_DATA'], true); 其实用这一句即可实现JSON二维数组字符串转PHP的二维数组变量,不用自己动态构造二维数组 该函数的第二个参数很重要:不加true会以PHP对象输出, 加true输出PHP数组
 
/**     * 根据上传的消息ID集合来批量更新消息的状态     */    public function update_status_batch()    {        //需要更新的数据/*        $data = array(            array(                'msg_id' => 1 ,                'msg_status' => 'HAS_READ'            ),            array(                'msg_id' => 2 ,                'msg_status' => 'HAS_READ'            )        );*/        //返回值默认是JSON对象,当第二个可选参数是TRUE的时候,则返回的是数组;如果是二维数组的JSON字符串,这里也会转换为二维数组的PHP变量        $json_data = json_decode($GLOBALS['HTTP_RAW_POST_DATA'], true);/*        //元素个数        //$item_num = count($json_data);        //定义二维数组        $array = array();        foreach($json_data as $item){            $array_unit = array(                'msg_id' => $item->msg_id,                'msg_status' => $item->msg_status            );            //往二维数组追加元素            array_push($array,$array_unit);        }*/        //更新,返回值是更新所影响的记录条数        $result = $this->m_user_msg->update_batch($json_data, 'msg_id');        if(!empty($result)){            //如果不为空,就返回成功            $return_data['code']= '100';            $return_data['msg']= '处理成功';            //需要进行字符串转数字处理            $return_data['data']= $result;        }else{            $return_data['code']= '400';            $return_data['msg']= '处理失败';            $return_data['data']= $json_data;        }        //设置以JSON返回给请求方        header('Content-Type:application/json; charset=utf-8');        //转换为JSON字符串        echo  stripslashes(json_encode($return_data, JSON_UNESCAPED_UNICODE)) ;    }

 

-------------------------------------------------------------------------------------------------------

json_decode函数第二个参数True和False的区别

默认值:false,返回object对象

Array

(
[0] => stdClass Object
(
[name] => C51790CC-EDEF-4DF7-9CC7-FE8F4DC8138B&ext=JPG
[width] => 200
[height] => 149
)

[1] => stdClass Object

(
[name] => 4E6A33AD-D9AE-47CD-9711-E95D9184FBC2&ext=JPG.jpg
[width] => 160
[height] => 160
)

)

为true的情况,返回数组array:

Array

(
[0] => Array
(
[name] => C51790CC-EDEF-4DF7-9CC7-FE8F4DC8138B&ext=JPG
[width] => 200
[height] => 149
)

[1] => Array

(
[name] => 4E6A33AD-D9AE-47CD-9711-E95D9184FBC2&ext=JPG.jpg
[width] => 160
[height] => 160
)

)

 

官方解释:

json_decode

(PHP 5 >= 5.2.0, PECL json >= 1.2.0)

json_decode — 对 JSON 格式的字符串进行编码

说明

 json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )

接受一个 JSON 格式的字符串并且把它转换为 PHP 变量

参数

 

json

待解码的 json  格式的字符串。

This function only works with UTF-8 encoded data.

assoc

当该参数为 TRUE 时,将返回  而非  。

depth

User specified recursion depth.

options

Bitmask of JSON decode options. Currently only JSON_BIGINT_AS_STRING is supported (default is to cast large integers as floats)

返回值

Returns the value encoded in json in appropriate PHP type. Values truefalse and null (case-insensitive) are returned as TRUEFALSE andNULL respectively. NULL is returned if the json cannot be decoded or if the encoded data is deeper than the recursion limit.

转载地址:http://brlwa.baihongyu.com/

你可能感兴趣的文章
ECSHOP登录注册信息提示页面的跳转时间设置
查看>>
【转】优化Web程序的最佳实践
查看>>
[转载]灵动思绪EF(Entity FrameWork)
查看>>
如何使用开源库,吐在VS2013发布之前,顺便介绍下VS2013的新特性"Bootstrap"
查看>>
使用Java、Matlab画多边形闭合折线图
查看>>
调试json
查看>>
C - Surprising Strings
查看>>
hibernate里的generator中class =value介绍
查看>>
activity-alias的使用
查看>>
免费的天气预报API--谷歌,雅虎,中央气象台
查看>>
第36周日
查看>>
SQL Server 无法打开物理文件的 2 种解决办法
查看>>
推荐一款好用的文件/文件夹对比工具 —— Beyond Compare
查看>>
java设计模式--结构型模式--桥接模式
查看>>
JS window.open()属性
查看>>
JVM:从实际案例聊聊Java应用的GC优化
查看>>
关于Git的暂存区这个概念的理解.
查看>>
/dev/shm和swap差别与联系
查看>>
[翻译svg教程]svg中矩形元素 rect
查看>>
【百度地图API】如何给自定义覆盖物添加事件
查看>>