Determines whether the map contains a given key

Ds\Map::hasKey

(PECL ds >= 1.0.0)

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

說明

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

Determines whether the map contains a given key.

參數

key

The key to look for.

返回值

Returns true if the key could found, false otherwise.

範例

示例 #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
?>

以上例程的輸出類似於:

bool(true)
bool(false)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *