Query: array_reverse
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ARRAY_REVERSE(3) 1 ARRAY_REVERSE(3) array_reverse - Return an array with elements in reverse orderSYNOPSISarray array_reverse (array $array, [bool $preserve_keys = false])DESCRIPTIONTakes an input $array and returns a new array with the order of the elements reversed.PARAMETERSo $array - The input array. o $preserve_keys - If set to TRUE numeric keys are preserved. Non-numeric keys are not affected by this setting and will always be preserved.RETURN VALUESReturns the reversed array.EXAMPLESExample #1 array_reverse(3) example <?php $input = array("php", 4.0, array("green", "red")); $reversed = array_reverse($input); $preserved = array_reverse($input, true); print_r($input); print_r($reversed); print_r($preserved); ?> The above example will output: Array ( [0] => php [1] => 4 [2] => Array ( [0] => green [1] => red ) ) Array ( [0] => Array ( [0] => green [1] => red ) [1] => 4 [2] => php ) Array ( [2] => Array ( [0] => green [1] => red ) [1] => 4 [0] => php )SEE ALSOarray_flip(3). PHP Documentation Group ARRAY_REVERSE(3)
Related Man Pages |
---|
array_map(3) - php |
array_flip(3) - php |
array_keys(3) - php |
array_slice(3) - php |
array_unique(3) - php |
Similar Topics in the Unix Linux Community |
---|
Array Retrieval Formatting |
Storage Array not readable |
Arrays in awk |
Printing array elements in reverse |
Array to array scanning |