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
相关用法
- d3.js d3.set.values()用法及代码示例
- d3.js d3.map.values()用法及代码示例
- d3.js d3.values()用法及代码示例
- Node.js Buffer.values()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Map values() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。