Skip to content
Related Articles
Open in App
Not now

Related Articles

PHP | Ds\Map map() Function

Improve Article
Save Article
Like Article
  • Last Updated : 21 Aug, 2019
Improve Article
Save Article
Like Article

The Ds\Map::map() function of the Map class in PHP is used to apply a callback function to a Map object. This returns the result of applying the callback function to each value present on the map. The function does not update the values in the original map, instead, it just returns the result of the updates without affecting the original values.

Syntax:

Ds\Map public Ds\Map::map ( callable $callback )

Parameter: It accepts a callback function as a parameter. This callback function applies a specific operation on each value of the map.

Return value: This function returns the result of applying the callback function on each value of the map without affecting the original values.

Below program illustrate the Ds\Map::map() function in PHP:
Program:




<?php
// PHP program to illustrate the map()
// function of Ds\map
  
// Creating a Map
$map = new \Ds\Map(["1" => "Geeks"
            "2" => "for", "3" => "Geeks"]);
  
// Print the result of map() function
print_r($map->map(function($key, $value){
                    return strtoupper($value); 
}));
  
// Print the actual map
print_r($map);
  
?>

Output:

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 1
            [value] => GEEKS
        )

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

    [2] => Ds\Pair Object
        (
            [key] => 3
            [value] => GEEKS
        )

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

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

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

)

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

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!