PHP的Ds \ Map::keys()函數用於獲取當前Map實例的一組鍵。返回集中的鍵順序與實際Map實例中的鍵順序相同。
用法:
Ds\Set public Ds\Map::keys ( void )
參數:該函數不接受任何參數。
返回值:它以相同順序返回一組Ds \ Set,其中包含指定Map實例的所有鍵。
以下示例程序旨在說明PHP中的Ds \ Map::keys()函數:
程序1:
<?php
// PHP program to illustrate keys() function
$map = new \Ds\Map([1 => "Geeks", 2 => "for",
3 => "Geeks"]);
print_r($map->keys());
?>
輸出:
Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 )
程序2:
<?php
// PHP program to illustrate keys() function
$map = new \Ds\Map(["first" => "Geeks", "second" => "for",
"third" => "Geeks"]);
print_r($map->keys());
?>
輸出:
Ds\Set Object ( [0] => first [1] => second [2] => third )
參考:http://php.net/manual/en/ds-map.keys.php\
相關用法
- PHP end()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP max( )用法及代碼示例
- PHP Ds\Set last()用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
- PHP Ds\Set contains()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map sum()用法及代碼示例
- PHP Ds\Map first()用法及代碼示例
- PHP dir()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Map keys() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。