PHP » PYTHON |
login |
register |
about
|
PYTHON array_reverse
is this article helpful?
|
Python replacement for PHP's array_reverse
[
edit
| history
]
result = myList[::-1] array_reverse(PHP 4, PHP 5) array_reverse — Return an array with elements in reverse order Description
array array_reverse
( array $array
[, bool $preserve_keys= false
] )
Takes an input array and returns a new array with the order of the elements reversed. Parameters
Return ValuesReturns the reversed array. Changelog
Examples
Example #1 array_reverse() example
<?phpThis 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] => Array
(
[0] => green
[1] => red
)
[1] => 4
[2] => php
)
Array
(
[2] => Array
(
[0] => green
[1] => red
)
[1] => 4
[0] => php
)
|
more
Recently updated
more
Most requested
more
Last requests
|