gpt4 book ai didi

php - 如何使用 PHP 或 jQuery 在 JSON 文件中设置正确的 $key=>$value 关联

转载 作者:行者123 更新时间:2023-12-01 07:55:11 26 4
gpt4 key购买 nike

我需要重新格式化 JSON 文件,以便数组中的值现在成为该数组的键。

{
"ID": "M-420",
"ProductName": "example product name ",
"ProductDescription": "example description",
"Color": "blue "
},
{
"ID": "M-421",
"ProductName": "example product name ",
"ProductDescription": "example description",
"Color": "yellow "
}

进入

{
"M-420": {
"ProductName": "example product name ",
"ProductDescription": "example description",
"Color": "blue "
}
},
{
"M-421": {
"ProductName": "example product name ",
"ProductDescription": "example description",
"Color": "blue "
}
}

我需要能够使用 PHP 获取每个唯一 ID 的属性。我正在使用 $json_decode();

将 JSON 转换为关联数组

非常感谢!

最佳答案

$new_array = array();
foreach ($array as $element) {
$new_array[$element['ID']] = $element;
}

关于php - 如何使用 PHP 或 jQuery 在 JSON 文件中设置正确的 $key=>$value 关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25164835/

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