php array push without key code example
Example 1: php array push with key
<?php
$a=array("a"=>"red","b"=>"green");
array_push($a,"blue","yellow");
print_r($a);
?>
Example 2: push collection php
$collection = collect([1, 2, 3, 4]);
$collection->push(5);
$collection->all();
// [1, 2, 3, 4, 5]
Example 3: php array push key value
<?php
$image[0] = $image[0].','.$filename;
?>