string(5) "Fruit" ["Color"]=>-6ren">
gpt4 book ai didi

php - 如何从对象(stdClass)中获取值?

转载 作者:IT王子 更新时间:2023-10-29 01:15:04 26 4
gpt4 key购买 nike

使用 PHP,我必须以如下格式解析进入我的代码的字符串:

object(stdClass)(4) { 
["Title"]=> string(5) "Fruit"
["Color"]=> string(6) "yellow"
["Name"]=> string(6) "banana"
["id"]=> int(3)
}

我确定有一个简单的解决方案,但我似乎找不到它...如何获取颜色和名称?

非常感谢。

最佳答案

你可以这样做:$obj->Title 等等。

或者你可以把它变成一个数组:

$array = get_object_vars($obj);

关于php - 如何从对象(stdClass)中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7956060/

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