| CARVIEW |
Select Language
HTTP/2 200
server: myracloud
date: Wed, 28 Jan 2026 23:00:41 GMT
content-type: text/html; charset=utf-8
content-language: en
permissions-policy: interest-cohort=()
x-frame-options: SAMEORIGIN
status: 200 OK
link: ; rel=shorturl
last-modified: Wed, 28 Jan 2026 22:08:30 GMT
vary: accept-encoding
content-encoding: gzip
expires: Wed, 28 Jan 2026 23:00:41 GMT
cache-control: max-age=0
PHP: array_reverse - Manual
update page now
array_reverse
(PHP 4, PHP 5, PHP 7, PHP 8)
array_reverse — Return an array with elements in reverse order
Description
Takes an input array and returns a new array with
the order of the elements reversed.
Parameters
array-
The input array.
preserve_keys-
If set to
truenumeric keys are preserved. Non-numeric keys are not affected by this setting and will always be preserved.
Return Values
Returns the reversed array.
Examples
Example #1 array_reverse() 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
)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close • / to open
Press Enter without
selection to search using Google