dongyuan1902 2016-02-26 08:46 采纳率: 0%
浏览 374
已采纳

如何在php中解析带有数组的JSON字符串

I am sending a JSON string in php post request. JSON string look like this:

{"mobile":"0000000000","otp":"970996", "items":[{"pid":"12", "vid":"20"},{"pid":"13", "vid":"2"}]}

At server side i want to get mobile, otp and pid and vid for all items.

I am getting mobile number from this:

$data = json_decode(file_get_contents('php://input'), true);
//print_r($data);
echo $data["mobile"];

But when i am trying to get pid and vid like this:

foreach($data["items"] as $mydata){

     echo $mydata->pid;
}

i am getting error: Trying to get property of non-object.

How to solve this?

Edit:

If there is any better way to parse JSON in php, please suggest that also.

  • 写回答

1条回答 默认 最新

  • dongsi3826 2016-02-26 08:50
    关注

    Just access pid with:

    $mydata['pid']
    

    You pass true as a second argument for json_decode

    When TRUE, returned objects will be converted into associative arrays.

    So you have to treat is as an array, not an object.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条