PHP: Array Slice splitting array into chunks

In PHP we can able to slice an Array into small chunks. To chunk array, there is a function called array_slice(). This function will accept splitting array with Limit and offset of the slice. It will split array into given limit from the offset of starting.