Friday, July 31, 2026
HomeLanguagesPHP | DsMap reverse() Function

PHP | Ds\Map reverse() Function

The Ds/Map::reverse() function in PHP is used to in-place reverse the elements of a specified Map instance. That is, the function in-place reverses the order of elements present in the specified Map instance.

Syntax: 

Ds\Map public Ds\Map::reverse ( int $position ) 

Parameter: This function does not accepts any parameter.

Return value: The function does not returns any value.

Below programs illustrate the Ds/Map::reverse() function:

Program 1:  

PHP




<?php
// PHP program to illustrate reverse() function
 
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
 
// Reverse the Map
$map->reverse();
 
// Print the reversed Map
print_r($map);
 
?>


Output: 

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 3
            [value] => 30
        )

    [1] => Ds\Pair Object
        (
            [key] => 2
            [value] => 20
        )

    [2] => Ds\Pair Object
        (
            [key] => 1
            [value] => 10
        )

)

Program 2: 

PHP




<?php
// PHP program to illustrate reverse() function
 
$map = new \Ds\Map(["first" => "Geeks", "second" => "for",
            "third" => "Geeks"]);
 
// Reverse the Map
$map->reverse();
 
// Print the Map
print_r($map);
 
?>


Output: 

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => third
            [value] => Geeks
        )

    [1] => Ds\Pair Object
        (
            [key] => second
            [value] => for
        )

    [2] => Ds\Pair Object
        (
            [key] => first
            [value] => Geeks
        )

)

Reference: http://php.net/manual/en/ds-map.reverse.php
 

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS