How to Split Array into Specific Number of Chunks in PHP ?
Last Updated :
03 Jul, 2024
This article will show you how to split an array into a specific number of chunks using PHP. There are basically two approaches to solve this problem, these are:
Using array_chunk() function
The array_chunk() function is used to split an array into parts or chunks of a given size depending upon the parameters passed to the function. The last chunk may contain fewer elements than the desired size of the chunk.
Syntax:
array array_chunk( $array, $size, $preserve_keys )
Example:
PHP
<?php
// PHP Program to Split Array into
// Specific Number of Chunks
// Declare an array
$arr = [
"G", "e", "e", "k", "s",
"f", "o", "r", "G", "e",
"e", "k", "s"
];
// Use array_chunk() function to
// split array into chunks
print_r(array_chunk($arr, 4));
?>
Output:
Array (
[0] => Array (
[0] => G
[1] => e
[2] => e
[3] => k
)
[1] => Array (
[0] => s
[1] => f
[2] => o
[3] => r
)
[2] => Array (
[0] => G
[1] => e
[2] => e
[3] => k
)
[3] => Array (
[0] => s
)
)
Using array_slice() function
The array_slice() function is used to fetch a part of an array by slicing through it, according to the users choice.
Syntax:
array_slice($array, $start_point, $slicing_range, preserve)
Example:
PHP
<?php
// PHP Program to split array into
// Specific Number of Chunks
// Declare an array
$arr = [
"G", "e", "e", "k", "s",
"f", "o", "r", "G", "e",
"e", "k", "s"
];
// Use array_slice() function to
// split array into chunks
$splitArr = [
array_slice($arr, 0, 4),
array_slice($arr, 4, 7),
array_slice($arr, 8, 12),
array_slice($arr, 12, 1),
];
print_r($splitArr);
?>
Output:
Array (
[0] => Array (
[0] => G
[1] => e
[2] => e
[3] => k
)
[1] => Array (
[0] => s
[1] => f
[2] => o
[3] => r
)
[2] => Array (
[0] => G
[1] => e
[2] => e
[3] => k
)
[3] => Array (
[0] => s
)
)
Approach 3: Using array_map with range
You can use array_map with range to generate chunk indexes based on the array size and chunk size. Then, apply array_slice to extract chunks using these indexes, resulting in the array split into specific-sized chunks.
Example: This PHP script defines a custom_array_chunk function to split an array $arr into chunks of size 4 using array_map, range, and array_slice, displaying the result with print_r.
PHP
<?php
// Custom function to split array into chunks
function custom_array_chunk($array, $chunk_size) {
// Calculate the number of chunks needed
$num_chunks = ceil(count($array) / $chunk_size);
// Use array_map with range to create chunks
return array_map(function($i) use ($array, $chunk_size) {
// Calculate start index of current chunk
$start = $i * $chunk_size;
// Return slice of array for current chunk
return array_slice($array, $start, $chunk_size);
}, range(0, $num_chunks - 1));
}
// Declare an array
$arr = [
"G", "e", "e", "k", "s",
"f", "o", "r", "G", "e",
"e", "k", "s"
];
// Split array into chunks of size 4 using custom function
$result = custom_array_chunk($arr, 4);
// Print the result
print_r($result);
?>
OutputArray
(
[0] => Array
(
[0] => G
[1] => e
[2] => e
[3] => k
)
[1] => Array
(
[0] => s
[1] => f
...
Using a Generator Function
In the generator function approach, define a generator that yields chunks of the original array. Calculate the chunk size based on the desired number of chunks, then use array_slice() within the generator. Convert the generator's output to an array using iterator_to_array().
Example:
PHP
<?php
function array_chunk_generator($array, $numberOfChunks) {
$chunkSize = ceil(count($array) / $numberOfChunks);
for ($i = 0; $i < $numberOfChunks; $i++) {
yield array_slice($array, $i * $chunkSize, $chunkSize);
}
}
$array = range(1, 10);
$numberOfChunks = 3;
$chunks = iterator_to_array(array_chunk_generator($array, $numberOfChunks));
print_r($chunks);
?>
OutputArray
(
[0] => Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
)
[1] => Array
(
[0] => 5
[1] => 6
...
Using a While Loop
This method involves calculating the chunk size based on the desired number of chunks and using a while loop to slice the array into these chunks.
Example: In this example, the splitArrayIntoChunks function first calculates the chunk size by dividing the total number of elements by the number of desired chunks and rounding up using ceil. It then initializes an empty array for the chunks and an index variable. The while loop iterates through the array, slicing off chunks of the calculated size and adding them to the chunks array until the entire array has been processed.
PHP
<?php
function splitArrayIntoChunks($array, $numChunks) {
$chunkSize = ceil(count($array) / $numChunks);
$chunks = [];
$index = 0;
while ($index < count($array)) {
$chunks[] = array_slice($array, $index, $chunkSize);
$index += $chunkSize;
}
return $chunks;
}
// Example usage
$array = ['G', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'G', 'e', 'e', 'k', 's'];
$numChunks = 4;
$chunks = splitArrayIntoChunks($array, $numChunks);
print_r($chunks);
?>
OutputArray
(
[0] => Array
(
[0] => G
[1] => e
[2] => e
[3] => k
)
[1] => Array
(
[0] => s
[1] => f
...
Using array_map with range
You can use array_map with range to generate chunk indexes based on the array size and chunk size. Then, apply array_slice to extract chunks using these indexes, resulting in the array split into specific-sized chunks.
Example:
PHP
<?php
function custom_array_chunk($array, $size) {
return array_map(function($i) use ($array, $size) {
return array_slice($array, $i * $size, $size);
}, range(0, ceil(count($array) / $size) - 1));
}
// Example usage:
$array = ['G', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'G', 'e', 'e', 'k', 's'];
$chunked_array = custom_array_chunk($array, 4);
print_r($chunked_array);
?>
OutputArray
(
[0] => Array
(
[0] => G
[1] => e
[2] => e
[3] => k
)
[1] => Array
(
[0] => s
[1] => f
...
Similar Reads
How to get total number of elements used in array in PHP ? In this article, we will discuss how to get total number of elements in PHP from an array. We can get total number of elements in an array by using count() and sizeof() functions. Using count() Function: The count() function is used to get the total number of elements in an array. Syntax: count(arra
2 min read
How to Convert Number to Character Array in PHP ? Given a number, the task is to convert numbers to character arrays in PHP. It is a common operation when you need to manipulate or access individual digits of a number. This can be particularly useful in situations where you need to perform operations on the digits of a number, such as digital root
3 min read
How to Insert a New Element in an Array in PHP ? In PHP, an array is a type of data structure that allows us to store similar types of data under a single variable. The array is helpful to create a list of elements of similar types, which can be accessed using their index or key.We can insert an element or item in an array using the below function
5 min read
How to Slice an Array in PHP? In PHP, slicing an array means taking a subset of the array and extracting it according to designated indices. When you need to extract a subset of elements from an array without changing the original array, this operation comes in handy. PHP comes with a built-in function called array_slice() to he
2 min read
How to read each character of a string in PHP ? A string is a sequence of characters. It may contain integers or even special symbols. Every character in a string is stored at a unique position represented by a unique index value. Here are some approaches to read each character of a string in PHPTable of ContentUsing str_split() method - The str_
4 min read
How to Switch the First Element of an Arrays Sub Array in PHP? Given a 2D array where each element is an array itself, your task is to switch the first element of each sub-array with the first element of the last sub-array using PHP.Example:Input: num = [ ['a', 'b', 'c'], ['d', 'e', 'f'], ['g', 'h', 'i']];Output: [ ['g', 'b', 'c'], ['d', 'e', 'f'], ['a', 'h', '
2 min read