📅  最后修改于: 2023-12-03 15:33:32.392000             🧑  作者: Mango
Ds\Map是PHP的内置扩展,提供了一种类似于数组的数据结构。count()函数用于返回Ds\Map中元素的数量。
int Ds\Map::count ( void )
无。
返回Ds\Map中元素的数量。
以下示例演示了如何使用count()函数。
$map = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
echo $map->count(); // 输出: 3