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.
私は14個の要素を含むJSONを持っています。それを、それぞれ 2 つまたは 3 つの要素の小さな JSON に分割するにはどうすればよいでしょうか。
正確な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