当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Map hasKey()用法及代码示例


PHP中的Ds \ Map::hasKey()函数用于检查Map对象中是否存在给定的Key。它接受要检查的 key 作为参数,如果该 key 存在于Map中,则返回True,否则返回False。

用法

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

参数:它接受要检查的Key作为参数。键是混合类型,它可以是字符串,整数或任何其他类型的值。


返回值:该函数根据给定键是否存在于Map中,返回布尔值True或False。

以下示例程序旨在说明Ds \ Map的Ds \ Map::hasKey()函数:

程序1:

<?php 
// PHP program to illustrate the hasKey() 
// function of Ds\map 
  
// Creating a Map 
$map = new \Ds\Map(["1" => 5,  
            "2" => 10, "3" => 15]); 
  
// check if the key "1" is present in the Map 
var_dump($map->hasKey("1")); 
  
?>

输出:

bool(true)

程序2:

<?php 
// PHP program to illustrate the hasKey() 
// function of Ds\map 
  
// Creating a Map 
$map = new \Ds\Map(["Geeks" => "1",  
            "for" => "2", "Geeks" => "3"]); 
  
// Check if the key "Geeks" is  
// present in the Map 
var_dump($map->hasKey("Geeks")); 
  
?>

输出:

bool(true)

参考:http://php.net/manual/en/ds-map.clear.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Map hasKey() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。