There a times when you have an array and need to slit that array into smaller ones, I usually reach for explode or a foreach and do some custom coding but there is a far better way that’s built into PHP a function called array_chunk.
It accepts 3 parameters:
It’s perfect for this for instance take a look at this quick example:
//array of items
$items = ['Book', 'Mobile', 'Laptop', 'Monitor', 'Keys', 'Cards'];
//split the above array into multiple arrays containing 2 indexes in each.
$parts = array_chunk($items, 2);
//print out the results
echo '<pre>'; print_r($parts); echo '</pre>';
Returns:
Array
(
[0] => Array
(
[0] => Book
[1] => Mobile
)
[1] => Array
(
[0] => Laptop
[1] => Monitor
)
[2] => Array
(
[0] => Keys
[1] => Cards
)
)
Read articles directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Copyright © 2006 - 2025 DC Blog - All rights reserved.