douyan8961 2016-12-10 11:19
浏览 63
已采纳

在php中将对象转换为JSON的问题

I need to convert an object into JSON using a php script.

I wrote this code in a loop cycle:

$zaino->rows[$num_oggetti]->item = $oggetto;
$zaino->rows[$num_oggetti]->amount = $num;

After the loop cycle I convert the object into json: json_encode($zaino);

This is what I get:

{"rows":{"1":{"item":"Soffio di Morte","amount":"1"},"2":{"item":"Pietra Anima di Ferro","amount":"11"},"3":{"item":"Pietra Anima di Legno","amount":"12"}}

But I need something like:

{"rows":[{"item":"Soffio di Morte","amount":"1"},{"item":"Pietra Anima di Ferro","amount":"11"},{"item":"Pietra Anima di Legno","amount":"12"}]}

without numbers between "", so that I can easily get the values using for example $zaino->rows[1]->item after calling a json_decode. How can I do it?

  • 写回答

1条回答 默认 最新

  • doushishi2415 2016-12-10 12:49
    关注

    The problem is that $num_oggetti is a string value, not a number (yes, numeric, but not a number). This tells PHP that you are setting a key instead of an index.

    If you do not need the actual index you could do something like:

    $zaino->rows[] = [
      'item'   => $oggetto,
      'amount' => $num
    ];
    

    This way you leave the index generation entirely up to PHP and you'll get the json output you want.

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

报告相同问题?

悬赏问题

  • ¥15 任务A:大数据平台搭建(容器环境)怎么做呢?
  • ¥15 r语言神经网络自变量重要性分析
  • ¥15 基于双目测规则物体尺寸
  • ¥15 wegame打不开英雄联盟
  • ¥15 公司的电脑,win10系统自带远程协助,访问家里个人电脑,提示出现内部错误,各种常规的设置都已经尝试,感觉公司对此功能进行了限制(我们是集团公司)
  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计