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


PHP Ds\Map values()用法及代碼示例


Ds \ Map::values()函數是PHP中的內置函數,用於返回Map值的序列。

用法:

Ds\Sequence public Ds\Map::values ( void )

參數:該函數不接受任何參數。


返回值:它返回一個Ds \ Sequence,其中包含映射的所有值。

以下示例程序旨在說明PHP中的Ds \ Map::values()函數:

程序1:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(["a" => "Geeks", "b" => "for", 
                                   "c" => "Geeks"]);  
  
print_r($map->values()); 
  
// Declare another new map 
$map = new \Ds\Map(["b" => "Computer", "e" =>  
                       "Science", "f" => "Portal"]);  
  
print_r($map->values()); 
  
?>
輸出:
Ds\Vector Object
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
)
Ds\Vector Object
(
    [0] => Computer
    [1] => Science
    [2] => Portal
)

程序2:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(["Geeks1" => "computer",  
 "Geeks2" => "science", "Geeks3" => 5, "Geeks4" => 20]);  
  
var_dump($map->values()); 
  
// Declare another new map 
$map = new \Ds\Map(["x" => "A", "y" => "B", "z" => "C"]);  
  
var_dump($map->values()); 
  
?>
輸出:
object(Ds\Vector)#2 (4) {
  [0]=>
  string(8) "computer"
  [1]=>
  string(7) "science"
  [2]=>
  int(5)
  [3]=>
  int(20)
}
object(Ds\Vector)#1 (3) {
  [0]=>
  string(1) "A"
  [1]=>
  string(1) "B"
  [2]=>
  string(1) "C"
}

參考: https://www.php.net/manual/en/ds-map.values.php



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Map values() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。