PHP » GoLang |
login |
register |
about
|
|
Ds\Map::keys(PECL ds >= 1.0.0) Ds\Map::keys — Returns a set of the map's keys Description
public Ds\Set Ds\Map::keys
( void
)
Returns a set containing all the keys of the map, in the same order. ParametersThis function has no parameters. Return ValuesA Ds\Set containing all the keys of the map. ExamplesExample #1 Ds\Map::keys() example
<?phpThe above example will output something similar to:
object(Ds\Set)#2 (3) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
}
|
more
Most requested
more
Last requests
|