Answers for "how to add data object to array laravel"

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

Code answers related to "how to add data object to array laravel"

Browse Popular Code Answers by Language