Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 json 值如下所示:
[{"Id":"1169"},{"Id":"1164"},{"Id":"1163"},{"Id":"1162"},{"Id":"1161"}]
现在我只想将数值 1169,1164,1163,1162,1161 存储到不同的数组中。我该怎么做?
简单的
$values = array_values(json_decode($json,true));
它不是数组,它是一个 json。
您可以从数组更改为 json 和从 json 更改为数组。
$a = json_encode($yourArray);
和
$b= json_decode($yourJson);