gpt4 book ai didi

php - 将 stdClass 对象转换为 php 中的关联数组

转载 作者:可可西里 更新时间:2023-11-01 13:39:55 26 4
gpt4 key购买 nike

我需要转换这个数组

Array ( 
[0] => stdClass Object
( [title] => primo )
[1] => stdClass Object
( [title] => secondo ))

Array ( 
[primo] => primo
[secondo] => secondo )

尝试了不同的选项,包括类型转换,仍然没有找到正确的解决方案

最佳答案

使用json_encode()json_decode()

$arr = json_decode(json_encode($yourObject), TRUE);

json_decode() 的第二个参数设置为 TRUE

函数定义:

mixed json_decode ( string $json [, bool $assoc = false [, int $depth > = 512 [, int $options = 0 ]]] )

这会将您的对象转换为关联数组。

关于php - 将 stdClass 对象转换为 php 中的关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34428702/

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