访问对象变量

发布于 2024-10-26 18:22:18 字数 1690 浏览 1 评论 0原文

我正在使用一个 API,当有数据时会产生这样的数组:

object(stdClass)#38 (5) {
  ["ReturnCode"]=>
int(1)
["EntityResults"]=>
object(stdClass)#39 (1) {
  ["Entity"]=>
  object(stdClass)#40 (15) {
  ["id"]=>
  int(43622)
  ["UserDefinedFields"]=>
  object(stdClass)#41 (0) {
  }
  ["TicketID"]=>
  int(31024)
  ["InternalAllocationCodeID"]=>
  int(28303142)
  ["Date"]=>
  string(19) "2011-03-24T00:00:00"
  ["StartDateTime"]=>
  string(19) "2011-03-24T11:41:00"
  ["EndDateTime"]=>
  string(19) "2011-03-24T11:46:00"
  ["HoursWorked"]=>
  float(0.08)
  ["HoursToBill"]=>
  float(0.0833333358)
  ["OffsetHours"]=>
  float(0)
  ["SummaryNotes"]=>
  string(584) "Hi Steve..."
  ["InternalNotes"]=>
  string(0) ""
  ["RoleID"]=>
  int(24482927)
... 

... 

... 

...

然后我有一些返回结果的记录:

object(stdClass)#33 (5) {
["ReturnCode"]=>
int(1)
["EntityResults"]=>
object(stdClass)#34 (0) {
}
["EntityResultType"]=>
string(9) "timeentry"
["Errors"]=>
object(stdClass)#35 (0) {
}
["EntityReturnInfoResults"]=>
object(stdClass)#36 (0) {
}

}

对于最后一个结果,我收到错误

永恒:通知

消息:未定义的属性: stdClass::$Entity

文件名:models/tickets_model.php

我的问题是如何避免出现此错误?我已经尝试过了

    if($result->queryResult->EntityResults->Entity):
        $noteso = $result->queryResult->EntityResults->Entity;
        if(count($noteso)):
            return $noteso;
        else:
            return false;
        endif;
    endif;

,但后来我得到了同样的错误,但在 IF 语句中。

希望这里有足够的内容让人们了解正在发生的事情。

非常感谢您的帮助,

比利

I'm using an API that results an array like this when there is data:

object(stdClass)#38 (5) {
  ["ReturnCode"]=>
int(1)
["EntityResults"]=>
object(stdClass)#39 (1) {
  ["Entity"]=>
  object(stdClass)#40 (15) {
  ["id"]=>
  int(43622)
  ["UserDefinedFields"]=>
  object(stdClass)#41 (0) {
  }
  ["TicketID"]=>
  int(31024)
  ["InternalAllocationCodeID"]=>
  int(28303142)
  ["Date"]=>
  string(19) "2011-03-24T00:00:00"
  ["StartDateTime"]=>
  string(19) "2011-03-24T11:41:00"
  ["EndDateTime"]=>
  string(19) "2011-03-24T11:46:00"
  ["HoursWorked"]=>
  float(0.08)
  ["HoursToBill"]=>
  float(0.0833333358)
  ["OffsetHours"]=>
  float(0)
  ["SummaryNotes"]=>
  string(584) "Hi Steve..."
  ["InternalNotes"]=>
  string(0) ""
  ["RoleID"]=>
  int(24482927)
... 

... 

... 

...

Then I have some record that return the results:

object(stdClass)#33 (5) {
["ReturnCode"]=>
int(1)
["EntityResults"]=>
object(stdClass)#34 (0) {
}
["EntityResultType"]=>
string(9) "timeentry"
["Errors"]=>
object(stdClass)#35 (0) {
}
["EntityReturnInfoResults"]=>
object(stdClass)#36 (0) {
}

}

With this last result I get an error

everity: Notice

Message: Undefined property:
stdClass::$Entity

Filename: models/tickets_model.php

My question is how can I avoid getting this error? I've tried

    if($result->queryResult->EntityResults->Entity):
        $noteso = $result->queryResult->EntityResults->Entity;
        if(count($noteso)):
            return $noteso;
        else:
            return false;
        endif;
    endif;

But then I get the same error but in the IF statement.

Hope there's enough here for someone to understand what's happening.

Most appreciated with any help,

Billy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赤濁 2024-11-02 18:22:18

如果我理解正确的话,这就是你想要的:

if(isset($result->queryResult->EntityResults->Entity)):

If I understand correctly, this is what you want:

if(isset($result->queryResult->EntityResults->Entity)):
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文