PHP » GoLang |
login |
register |
about
|
Ds\Map::map(PECL ds >= 1.0.0) Ds\Map::map — Returns the result of applying a callback to each value Description
Returns the result of applying a Parameters
Return Values
The result of applying a
ExamplesExample #1 Ds\Map::map() example
<?php The above example will output something similar to: ( [0] => Ds\Pair Object ( [key] => a [value] => 2 ) [1] => Ds\Pair Object ( [key] => b [value] => 4 ) [2] => Ds\Pair Object ( [key] => c [value] => 6 ) ) Ds\Map Object ( [0] => Ds\Pair Object ( [key] => a [value] => 1 ) [1] => Ds\Pair Object ( [key] => b [value] => 2 ) [2] => Ds\Pair Object ( [key] => c [value] => 3 ) ) |
more
Recently updated
more
Most requested
more
Last requests
|