Answers for "how to add array value in laravel"

PHP
4

laravel append array to array

$arr = ["1", "2"];
array_push($arr, "3");
Posted by: Guest on September-02-2021
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

Code answers related to "how to add array value in laravel"

Browse Popular Code Answers by Language