laravel append array to array
$arr = ["1", "2"];
array_push($arr, "3");
laravel append array to array
$arr = ["1", "2"];
array_push($arr, "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 )
how to add values to an array in laravel
$array = array('foo' => 'bar');
$array = array_add($array, 'key', 'value');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us