-5

我有一个这样的json字符串

{
"6ad416d7-551a-41e3-9103-42d0a6a14d95":{
  "0":{
     "value":"KOSHER ONE"
  }
},
"acb022a1-2369-4a20-8b6e-714387b81a6c":{
  "0":{
     "value":"PAREVE"
  }
},
"f4ef2148-270e-4d9d-913d-f1a4ed2a73f0":{
  "0":{
     "value":"Crayon"
  }
}
}

我想提取并连接以下值,例如 KOSHER ONE+PAREVE+CRAYON。

谁能帮我解析这个字符串。

提前致谢

4

2 回答 2

1

PHP 有一个完整的JSON 库

您将使用 解析字符串json_decode,然后从结果对象图中检索值。

于 2012-12-01T12:14:27.893 回答
0

用于json_decode()解码 json 数据,您可以更改值。

更新所有值后,使用json_encode()将其更改回 json 字符串

json_encode:http: //www.php.net/manual/en/function.json-encode.php json_decode:http ://php.net/manual/en/function.json-decode.php

于 2012-12-01T12:14:56.323 回答