Laravel 8 shift() {#collection-method}
shift
方法移除并返回集合的第一个元素:
$collection = collect([1, 2, 3, 4, 5]);
$collection->shift();
// 1
$collection->all();
// [2, 3, 4, 5]
shift
方法移除并返回集合的第一个元素:
$collection = collect([1, 2, 3, 4, 5]);
$collection->shift();
// 1
$collection->all();
// [2, 3, 4, 5]