array(1) { [-6ren">
gpt4 book ai didi

php - 在 PHP 中访问对象内的数组值

转载 作者:行者123 更新时间:2023-12-04 05:03:28 24 4
gpt4 key购买 nike

我是 PHP 新手,正在尝试从以下内容访问“contactId”的值:

object(stdClass)#2 (4) { 
["contacts"]=> array(1) {
[0]=> object(stdClass)#3 (18) {

["email"]=> string(24) "joewilliams@icontact.com"
["firstName"]=> string(3) "Joe"
["lastName"]=> string(8) "Williams"
["prefix"]=> string(3) "Mr."
["suffix"]=> string(3) "Jr."
["fax"]=> string(0) ""
["phone"]=> string(10) "8668039462"
["street"]=> string(21) "2365 Meridian Parkway"
["street2"]=> string(0) ""
["city"]=> string(6) "Durham"
["state"]=> string(2) "NC"
["postalCode"]=> string(5) "27713"
["createDate"]=> string(19) "2013-03-30 21:22:28"
["status"]=> string(6) "normal"
["bounceCount"]=> NULL
["contactId"]=> string(8) "67295434"
}
}
["limit"]=> int(20)
["offset"]=> int(0)
["total"]=> int(1)
}

如何检索 contactId 的值?

非常感谢!

最佳答案

这些不是数组,而是包含包含对象的数组的对象。 PHP 对象访问语法为 ->

$variableName->contacts[0]->contactId

关于php - 在 PHP 中访问对象内的数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15823763/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com