0

我有一个包含 14 个元素的 JSON。我如何将它划分为较小的 JSON,每个可以说 2 或 3 个元素。

4

2 回答 2

2

不知道您的确切 json 是什么,但这将作为示例:

<?php

$jsonExample = '["a","b","c","d","e","f","g","h","i"]' ;
$arrResult = json_decode($jsonExample,true);
$output = array_chunk($arrResult,3);
var_dump($output);

?>

演示:http ://codepad.org/aYBg19DB

于 2013-09-18T20:28:33.680 回答
2

我建议使用 json_decode() 和 array_chunk()。

http://php.net/manual/en/function.array-chunk.php

http://php.net/manual/en/function.json-decode.php

于 2013-09-18T20:28:40.837 回答