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


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


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

用法:

bool public Ds\Map::hasValue ( mixed $value )

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


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

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

程序1:

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

输出:

bool(true)

程序2:

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

输出:

bool(true)

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



相关用法


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