Home > Backend Development > PHP Problem > How to reverse array elements in php

How to reverse array elements in php

青灯夜游
Release: 2023-03-14 07:20:01
Original
4178 people have browsed it

In PHP, you can use the array_reverse() function to reverse the array elements. This function will reverse the order of the elements in the array, create a new array and return it; the syntax format is "array_reverse(array,preserve) ".

How to reverse array elements in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

In php, you can use the array_reverse() function to reverse array elements.

<?php
header("Content-type:text/html;charset=utf-8");
$array= array("香蕉","苹果","梨子","橙子","橘子","榴莲");

var_dump(array_reverse($array));
var_dump(array_reverse($array,true));
?>
Copy after login

Original array:

How to reverse array elements in php

Reversed array:

How to reverse array elements in php

Description :

array_reverse() function returns an array in the reverse order of elements; it reverses the order of elements in the original array, creates a new array and returns it.

Grammar format:

array_reverse(array,preserve)
Copy after login
Parameters Description
array Required. Specifies an array.
preserve Optional. Specifies whether to retain the original array key names.
If set to TRUE, numeric keys will be preserved. Non-numeric keys are not affected by this setting and will always be retained.
Possible values:
  • true
  • false
## Return value: Return the flipped array .

Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of How to reverse array elements in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template