gpt4 book ai didi

php - 我需要帮助解码这个,这是 json 吗?

转载 作者:行者123 更新时间:2023-11-29 01:54:51 25 4
gpt4 key购买 nike

这是json吗?我需要从中回显某些信息,但在做这件事时遇到了麻烦。我试过json_decode,好像不行。

a:4:{s:5:"entry";a:1:{s:4:"type";s:10:"individual";}s:5:"group";a:1:{s:6:"family";a:0:{}}s:5:"image";a:3:{s:6:"linked";b:1;s:7:"display";b:1;s:4:"name";a:4:{s:9:"thumbnail";s:19:"jim12_thumbnail.jpg";s:5:"entry";s:15:"jim12_entry.jpg";s:7:"profile";s:17:"jim12_profile.jpg";s:8:"original";s:18:"jim12_original.jpg";}}s:4:"logo";a:3:{s:6:"linked";b:1;s:7:"display";b:1;s:4:"name";s:14:"jim12_logo.jpg";}}

最佳答案

使用

$decode = unserialize('a:4:{s:5:"entry";a:1:{s:4:"type";s:10:"individual";}s:5:"group";a:1:{s:6:"family";a:0:{}}s:5:"image";a:3:{s:6:"linked";b:1;s:7:"display";b:1;s:4:"name";a:4:{s:9:"thumbnail";s:19:"jim12_thumbnail.jpg";s:5:"entry";s:15:"jim12_entry.jpg";s:7:"profile";s:17:"jim12_profile.jpg";s:8:"original";s:18:"jim12_original.jpg";}}s:4:"logo";a:3:{s:6:"linked";b:1;s:7:"display";b:1;s:4:"name";s:14:"jim12_logo.jpg";}}')

然后

print_r($decode);

获取对象的信息

编辑:

它只是一个数组,您可以通过这种方式访问​​它的信息:

$decode['image']['name']['thumbnail']

在此示例中,您将获得缩略图值

关于php - 我需要帮助解码这个,这是 json 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32085044/

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