Ds\Map::hasKey

(PECL ds >= 1.0.0)

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

Descripción

publicDs\Map::hasKey(mixed$key): bool

Determines whether the map contains a given key.

Parámetros

key

The key to look for.

Valores devueltos

Returns true if the key could found, false otherwise.

Ejemplos

Ejemplo #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
?>

El resultado del ejemplo sería algo similar a:

bool(true) bool(false)
To Top