array_reverse
Return an array with elements in reverse order
&reftitle.description;
arrayarray_reverse
arrayarray
boolpreserve_keysfalse
Takes an input array and returns a new array with
the order of the elements reversed.
&reftitle.parameters;
array
The input array.
preserve_keys
If set to &true; keys are preserved.
&reftitle.returnvalues;
Returns the reversed array.
&reftitle.changelog;
&Version;
&Description;
4.0.3
The preserve_keys parameter was added.
&reftitle.examples;
array_reverse example
]]>
This makes both $result and
$result_keyed have the same elements, but
note the difference between the keys. The printout of
$result and
$result_keyed will be:
Array
(
[0] => green
[1] => red
)
[1] => 4
[2] => php
)
Array
(
[2] => Array
(
[0] => green
[1] => red
)
[1] => 4
[0] => php
)
]]>
&reftitle.seealso;
array_flip