我的函数返回一堆属性 id 及其对应的 json 格式名称。例如:
{
"DETAILS": [
{
"ATTR_ID": "522",
"ATTRIBUTE_ID": "4222",
"ATTRIBUTE_TYPE": "email",
},
{
"ATTR_ID": "523",
"ATTRIBUTE_ID": "4006",
"ATTRIBUTE_TYPE": "interest",
}
]
}
我需要将它存储在我需要缓存的数组中。(我可能会使用 $_SESSION)
现在另一个函数返回我一组属性 ID:
$val_array = $subarray[arrayOfAttributes];
foreach ($val_array as $val)
{
print "Attrib Value: $val\n"; //This will print ids 4222,4223,etc
}
what I need to do is correspond the ids with the type from the cache nad print out the respective Types.
我无法将此逻辑表述为代码。