No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

array_chunk

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

array_chunkSplit an array into chunks

Description

array_chunk ( array $array , int $size [, bool $preserve_keys = FALSE ] ) : array

Chunks an array into arrays with size elements. The last chunk may contain less than size elements.

PHP: array_chunk - Manual Home of Manuel PHP  Contents Haut

Parameters

array

The array to work on

size

The size of each chunk

preserve_keys

When set to TRUE keys will be preserved. Default is FALSE which will reindex the chunk numerically

PHP: array_chunk - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns a multidimensional numerically indexed array, starting with zero, with each dimension containing size elements.

PHP: array_chunk - Manual Home of Manuel PHP  Contents Haut

Errors/Exceptions

If size is less than 1 E_WARNING will be thrown and NULL returned.

PHP: array_chunk - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 array_chunk() example

<?php
$input_array 
= array('a''b''c''d''e');
print_r(array_chunk($input_array2));
print_r(array_chunk($input_array2true));
?>

The above example will output:

Array
(
    [0] => Array
        (
            [0] => a
            [1] => b
        )

    [1] => Array
        (
            [0] => c
            [1] => d
        )

    [2] => Array
        (
            [0] => e
        )

)
Array
(
    [0] => Array
        (
            [0] => a
            [1] => b
        )

    [1] => Array
        (
            [2] => c
            [3] => d
        )

    [2] => Array
        (
            [4] => e
        )

)

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph