當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。