在PHP中,有多种方法可以向集合(Collection)中添加元素。这里以使用Illuminate\Support\Collection
类为例,介绍如何添加元素:
push()
方法将一个或多个元素添加到集合的末尾:$collection = new Illuminate\Support\Collection();
$collection->push('apple');
$collection->push('banana');
$collection->push('orange');
add()
方法将一个或多个元素添加到集合的末尾:$collection = new Illuminate\Support\Collection();
$collection->add('apple');
$collection->add('banana');
$collection->add('orange');
merge()
方法将另一个集合的元素添加到当前集合中:$collection1 = new Illuminate\Support\Collection(['apple', 'banana']);
$collection2 = new Illuminate\Support\Collection(['orange']);
$collection1->merge($collection2);
concat()
方法将另一个集合的元素添加到当前集合中:$collection1 = new Illuminate\Support\Collection(['apple', 'banana']);
$collection2 = new Illuminate\Support\Collection(['orange']);
$collection1->concat($collection2);
这些方法都可以用于向集合中添加元素。你可以根据自己的需求和场景选择合适的方法。