(PECL ds >= 1.0.0)
Ds\Set::last — 返回集合中的最后一个值
返回集合中的最后一个值。
此函数没有参数。
集合中的最后一个值。
UnderflowException 如果为空。
示例 #1 Ds\Set::last() 示例
<?php$set = new \Ds\Set([1, 2, 3]);var_dump($set->last());?>
上面的示例将输出类似以下内容
int(3)