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 repeat a string to a specific number of times in PHP ?
A string is a sequence of characters stored in PHP. The string may contain special characters or numerical values or characters. The strings may contain any number of characters and may be formed by the combination of smaller substrings. Table of ContentUsing for loopUsing str_repeat methodUsing Rec
3 min read
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 get elements in reverse order of an array in PHP ?
An array is a collection of elements stored together. Every element in an array belong to a similar data type. The elements in the array are recognized by their index values. The elements can be subjected to a variety of operations, including reversal. There are various ways to reverse the elements
4 min read
How to insert a line break in PHP string ?
In this article, we will discuss how to insert a line break in a PHP string. We will get it by using the nl2br() function. This function is used to give a new line break wherever '\n' is placed.Syntax:nl2br("string \n");where the string is the input string.Example 1: PHP Program to insert a line bre
2 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 replace multiple characters in a string in PHP ?
A string is a sequence of characters enclosed within single or double quotes. A string can also be looped through and modifications can be made to replace a particular sequence of characters in it. In this article, we will see how to replace multiple characters in a string in PHP.Using the str_repla
3 min read
How to extract Numbers From a String in PHP ?
Extracting numbers from a string involves identifying and isolating numerical values embedded within a text. This process can be done using programming techniques, such as regular expressions, to filter out and retrieve only the digits from the string, ignoring all other characters.Here we have some
3 min read
How to reset Array in PHP ?
You can reset array values or clear the values very easily in PHP. There are two methods to reset the array which are discussed further in this article. Methods: unset() Functionarray_diff() Function Method 1: unset() function: The unset() function is used to unset a specified variable or entire arr
2 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