Free cookie consent management tool by TermsFeed Generator PHP Array Chunk | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP Array Chunk

PHP Array Chunk

Last Updated on Feb 14, 2023

Introduction

Sometimes you have to deal with a very large array of data. It would be much better to split the array in different chunks and work on each chunk one at a time.

For example if you have an array with 1000 elements you can split it in arrays of 10 or 100.

Array chunk is going to help you do exactly that.

Array Chunk

array_chunk($array,$length,$preserveKeys)

It takes 3 arguments

array is the original array

Length is the length of each chunk

PreserveKey is false by default. It reindexes your array with numerical values. But if you have an associative array and you want to keep the keys as is, make sure to set this to true

Let’s see an example

I have an array of 5 people (it’s not big I know but imagine it’s 500) and I want to split it into arrays with length of 2. And I want my keys to stay the same. So let’s see the code

$people = [
   'php'      => 'amir',
   'feedhive' => 'simon',
   'twitter'  => 'pratham',
   'docker'   => 'francesco',
   'web3'     => 'oliver'
];
$chunks = array_chunk($people,2,true);
//$chunks = array_chunk($people,2,true);
// Array (
// [0] => Array (
//      [php]       => amir
//      [feedhive]  => simon
//      )
// [1] => Array (
//      [twitter]   => pratham
//      [docker]    => francesco
//      )
// [2] => Array (
//      [web3]      => oliver
//      )
// )

As you can see it has returned an array of arrays. Each array is in length 2 except the last one which is in length 1 because there were no other items.

Now you can access each array and work on them. array_chunk is a great function isn’t it?

Conclusion

Now you know about array chunck function in PHP.

I recommend you to open a PHP files and try to define an array. then try to search the values inside it and see the result.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • array chunk function in PHP
  • split array into smaller chunks

 

Category: programming

Tags: #php #array

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP function
Mar 21, 2023 programming

PHP function

Today we are going to learn about functions in PHP. Functions are very important because they can help you divide your application in small bites that can be handled with a function. ...

10 Min Read Read More
PHP Array Merge
Feb 14, 2023 programming

PHP Array Merge

Today we are going to talk about array merge function in PHP. This function is very useful and merges all the arrays that you pass as arguments and returns an array. ...

3 Min Read Read More
Machine Learning in PHP
Mar 18, 2023 programming

Machine Learning in PHP

Machine learning is a way for computers to learn and improve at tasks without being specifically programmed to do so. Are you curious about machine learning and PHP? ...

10 Min Read Read More
How to Combine Excel Files Using PHP
May 06, 2024 programming

How to Combine Excel Files Using PHP

Sometimes you might have many excel files that you need to combine, whether it's reports, user data or anything else, merging them into one file with PHP can be easily done. ...

11 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...