$ids = [1];
$collection = collect([2]);
$collection->map(function ($item) use ($ids) {
array_push($ids, $item);
});
dd($ids);
This code returns
array:1 [ 0 => 1 ]
I thought this would return [1, 2]
because of array_push
;
How can I get [1, 2]
or array:2 [ 0 => 1 1 => 2 ]
?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire