Answers for "add element in array collection php"

PHP
2

php add element to array

<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
?>
Posted by: Guest on October-12-2020
0

push collection php

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

$collection->push(5);

$collection->all();

// [1, 2, 3, 4, 5]
Posted by: Guest on May-27-2020

Code answers related to "add element in array collection php"

Browse Popular Code Answers by Language