我有一个包含14个元素的JSON。 我怎样才能将它分成较小的JSON,即每个2或3个元素。
答案 0 :(得分: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);
?>
答案 1 :(得分:2)
我建议使用json_decode()和array_chunk()。