函数名: Ds\Map::last() 适用版本: PHP 7.0 及以上
用法: Ds\Map::last() 函数用于返回集合中的最后一个键值对。
参数: 无
返回值: 返回最后一个键值对,以键值对对象 Ds\Pair
的形式返回。
示例:
$map = new Ds\Map(['a' => 1, 'b' => 2, 'c' => 3]);
$lastPair = $map->last();
$lastKey = $lastPair->key;
$lastValue = $lastPair->value;
echo "最后一个键值对的键:$lastKey 值:$lastValue";
输出:
最后一个键值对的键:c 值:3
注意: 这个函数只适用于使用了 Ds\Map
类进行实例化的对象,并且在 PHP 7.0 及以上版本可用。如果集合为空,则返回 null
。