Ds\Map::hasKey

(PECL ds >= 1.0.0)

Ds\Map::hasKeyDetermines whether the map contains a given key

Descrierea

public Ds\Map::hasKey ( mixed $key ) : bool

Determines whether the map contains a given key.

Parametri

key

The key to look for.

Valorile întoarse

Returns TRUE if the key could found, FALSE otherwise.

Exemple

Example #1 Ds\Map::hasKey() example

<?php
$map 
= new \Ds\Map(["a" => 1"b" => 2"c" => 3]);

var_dump($map->hasKey("a")); // true
var_dump($map->hasKey("e")); // false
?>

Exemplul de mai sus va afișa ceva similar cu:

bool(true)
bool(false)