Answers for "laravel array_add method"

PHP
3

laravel add item to array

$fruits = ["apple", "banana"];
// array_push() function inserts one or more elements to the end of an array
array_push($fruits, "orange");

// If you use array_push() to add one element to the array, it's better to use
// $fruits[] = because in that way there is no overhead of calling a function.
$fruits[] = "orange";

// output: Array ( [0] => apple [1] => banana [2] => orange )
Posted by: Guest on December-29-2020
1

how to add values to an array in laravel

$array = array('foo' => 'bar');

$array = array_add($array, 'key', 'value');
Posted by: Guest on September-02-2020

Browse Popular Code Answers by Language