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
相關用法
- PHP pi( )用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP key()用法及代碼示例
- PHP end()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP max( )用法及代碼示例
- PHP dir()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Map hasKey() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。