Skip to content

push

把给定值添加到集合的末尾。

php
$collection = collect([1, 2, 3, 4]);

$collection->push(5);

$collection->all(); // [1, 2, 3, 4, 5]

相关方法