dotdx80642 2016-10-30 02:38
浏览 38
已采纳

PHP SOAP stdclass对象数组

I am using PHP SOAP script to retrieve data from a web service. My PHP code shown below results in a stdclass obect which includes an array called Staff.

    $values = $client->GetAllStaff($search_query);

    $xml = $values->SasReqRespGetAllStaff;

    print "<pre>
";
    print_r($xml);
    print "</pre>";
?>

This produces the following result on in my web browser.

  "stdClass Object
  (
   [Source] => R5 Sim
   [RespMsgTag] => 5
   [RespAck] => OK
   [RespNote] => 
   [TotalItems] => 13
   [Staff] => Array
      (
       [0] => stdClass Object
          (
              [StaffID] => 15
              [Last] => LastName1
              [First] => TESTstaffOut1
              [Middle] => MName1
              [Role] => Level 1
          )
       [1] => stdClass Object
          (
              [StaffID] => 16
              [Last] => LastName2
              [First] => TESTstaffOut2
              [Middle] => MName2
              [Role] => Level 2
          )"

How can I write the values from [Staff] => Array into PHP variables that can be used later or for other PHP? How can I loop through Staff [0], [1]?

  • 写回答

2条回答 默认 最新

  • dongtuhe0506 2016-10-30 03:54
    关注

    They are already in PHP variables (contained within the stdClass object). However if you want to loop through them you can do so like this:

    foreach($xml->Staff as $staff)
    {
      // Eg: To get the staff id:
      $staffId = $staff->StaffID;
      var_dump($staffId);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么