dongpao2871 2019-03-27 01:31
浏览 73
已采纳

PHP循环数组类型stdClass错误

I know this has been asked here: Loop through an array php and I am looking for a very similar solution for ProductName and ProductId but the previous answers are not helping.

Array ( [0] => stdClass Object ( 
[Id] => A048FDBF-67FF-4D28-8F53-7D41DCAC45A9 
[ProductDetail] => Array 
    ( 
        [0] => stdClass Object 
            ( 
                [ProductId] => A5C43424-FFD3-4097-80D4-01E04F759115 
                [ProductName] => Influencer Track 
                [ProductCode] => 
                [ProductType] => Session 
                [ProductDescription] => 
                [SessionCategoryName] => 
                [SessionCategoryId] => 00000000-0000-0000-0000-000000000000 
                [IsIncluded] => 
                [StartTime] => 2019-10-08T08:00:00 
                [EndTime] => 2019-10-08T18:00:00 
                [Status] => Active 
                [Capacity] => -1 
            ) 
        [1] => stdClass Object 
            ( 
                [ProductId] => 163AB381-1C3D-43AE-911D-0729982B8C5C 
                [ProductName] => BS 6:1 How to deal with the new normal using Sales & Operations Planning and Demand Driven MRP 
                [ProductCode] => 
                [ProductType] => Session 
                [ProductDescription] => With the inclusion of Sales and Operations Planning and DDMRP, IFS Applications 10 offers a highly competent set of planning capabilities. Join us in this session to discover how IFS planning strategies can be combined to drive process improvements beyond the expected. 
                [SessionCategoryName] => 
                [SessionCategoryId] => 00000000-0000-0000-0000-000000000000 
                [IsIncluded] => 
                [StartTime] => 2019-10-09T13:00:00 
                [EndTime] => 2019-10-09T13:45:00 
                [Status] => Active 
                [Capacity] => -1 
            ) 
        [2] => stdClass Object 
            ( 
                [ProductId] => 0E1F44BA-54AA-48AC-B54D-0802CCCD3A5A 
                [ProductName] => BS 1:5 Insights session 
                [ProductCode] => [ProductType] => Session 
                [ProductDescription] => [SessionCategoryName] => 
                [SessionCategoryId] => 00000000-0000-0000-0000-000000000000 
                [IsIncluded] => 
                [StartTime] => 2019-10-08T13:45:00 
                [EndTime] => 2019-10-08T14:30:00 
                [Status] => Active 
                [Capacity] => -1 
            ) 
        [3] => stdClass Object 
            ( 
                [ProductId] => DA447217-EA3F-4A14-AD83-0AD184E1D5C4 
                [ProductName] => BS 1:1 Are you ready for tomorrow’s Challengers in Manufacturing? 
                [ProductCode] => 
                [ProductType] => Session 
                [ProductDescription] => Trends like automation, legislation and sustainability present both challenges and opportunities. Our Global Industry Directors will discuss current and emerging trends in the Manufacturing industry and how our customers are addressing them. Join our session to find out how you can leverage the latest trends to disrupt your market. 
                [SessionCategoryName] => 
                [SessionCategoryId] => 00000000-0000-0000-0000-000000000000 
                [IsIncluded] => 
                [StartTime] => 2019-10-08T13:45:00 [EndTime] => 2019-10-08T14:30:00 [Status] => Active [Capacity] => -1 
            ) 
        [4] => stdClass Object 
            ( 
                [ProductId] => 244A8FBB-F731-43B5-909A-0B3DA39DF75C 
                [ProductName] => Influencer Dinner, time tbc 
                [ProductCode] => 
                [ProductType] => Session 
                [ProductDescription] => 
                [SessionCategoryName] => 
                [SessionCategoryId] => 00000000-0000-0000-0000-000000000000 
                [IsIncluded] => 
                [StartTime] => 2019-10-07T19:30:00 
                [EndTime] => 2019-10-07T22:30:00 
                [Status] => Active 
                [Capacity] => -1 
            )
        )
    )
)

I am trying this but I am getting the error Cannot use object of type stdClass as array

for ($i = 0; $i < count($events); $i++) {
      echo $events[$i]['ProductId'];
      echo $events[$i]['ProductName'];
}

Is a forloop the best way to do this and do I have to json_decode or some other method to pull the stdClass Object?

  • 写回答

2条回答 默认 最新

  • dsmnedc798226 2019-03-27 02:06
    关注

    try this and see if it works

    foreach($events as $event) {
        foreach($event->ProductDetail as $product) {
            echo $product->ProductId;
            echo $product->ProductName;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大