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 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀