PHP | Ds\Vector map() Function
The Ds\Vector::map() function is an inbuilt function in PHP which is used to return the result of a callback after applying to each value in the vector.
Syntax:
Ds\Vector public Ds\Vector::map( $callback )
Parameters: This function accepts single parameter $callback which is to be applied to each vector elements.
Return Value: This function returns the vector after applying the callback to each value in the vector.
Below programs illustrate the Ds\Vector::map() function in PHP:
Program 1:
<?php // Create new Vector $vector = new \Ds\Vector([1, 2, 3, 4, 5]); // Display the Vector element after // applying the callback function print_r($vector->map(function($value) { return $value * 10; })); ?> |
Output:
Ds\Vector Object
(
[0] => 10
[1] => 20
[2] => 30
[3] => 40
[4] => 50
)
Program 2:This program shows the implementation of map() function which sets 1 in the vector for each element satisfying the condition in callback.
<?php // Create new Vector $vector = new \Ds\Vector([10, 20, 30, 40, 50]); // Display the Vector element after // applying the callback function print_r($vector->map(function($value) { return $value <= 30; })); ?> |
Output:
Ds\Vector Object
(
[0] => 1
[1] => 1
[2] => 1
[3] =>
[4] =>
)
Reference: http://php.net/manual/en/ds-vector.map.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- p5.js | int() function
- p5.js | cos() function
- p5.js | red() function
- p5.js | hue() function
- p5.js | min() function
- D3.js | d3.set.has() Function
- D3.js | d3.hsl() Function
- p5.js | tan() function
- D3.js | d3.set.add() Function
- p5.js | log() function
- p5.js | sin() function
- PHP | pi( ) Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



