dongxian7489 2019-07-13 19:28
浏览 161

如何使用动态更改的键值访问嵌套的JSON对象

I'm trying to get JSON data into my PHP script and the problem is that this is a nested JSON object with dynamically changed key value (I've converted JSON objects into PHP objects):

stdClass Object
(
    [665261] => stdClass Object
        (
            [id] => 665261
            [SpeiseplanName] => Campus Mensa Wismar
            [Datum] => 2019-07-12
            [KstNr] => 462
            [ArtikelText] => ein Brathering ohne Mittelgräte
            [ZusatzStoffe] => 9 Fi Gl
            [ZusatzStoffeText] => mit Süßungsmittel, Fische, Gluten
            [PeStud] => 0.75
            [PeBed] => 1.35
            [PeGast] => 1.75
            [sortierung] => 46
        )

    [665262] => stdClass Object
        (
            [id] => 665262
            [SpeiseplanName] => Campus Mensa Wismar
            [Datum] => 2019-07-12
            [KstNr] => 462
            [ArtikelText] => zwei Bratheringe ohne Mittelgräte
            [ZusatzStoffe] => 9 Fi Gl
            [ZusatzStoffeText] => mit Süßungsmittel, Fische, Gluten
            [PeStud] => 1.25
            [PeBed] => 1.9
            [PeGast] => 2.25
            [sortierung] => 47
        )

    [665263] and so on.

So, I've already get the data like this:

<p id="desc"><?= htmlReady(_($data[665261]['ArtikelText'])) ?></p>

The output was then "zwei Bratheringe ohne Mittelgräte" as expected. But this numeric key 665261 is dynamic and changed every day.

So how can I access date with key's values like this? Thank you for your help.

  • 写回答

2条回答 默认 最新

  • dtrovwl75780 2019-07-13 20:07
    关注

    You just need to use foreach loop, like this:

    Suppose your object of objects name is $objects:

    foreach ($objects as $obj) {
        echo '<p id="desc">' . htmlReady(_($obj->ArtikelText)) . '</p>';
    }
    

    Or if you have a array of arrays, with the name of $arrays:

    foreach ($arrays as $arr) {
        echo '<p id="desc">' . htmlReady(_($arr['ArtikelText'])) . '</p>';
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!