Answers for "laravel push to array"

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
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
4

add array to array php

<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
/*
Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)
*/
?>
Posted by: Guest on June-03-2020
0

array helper array_push laravel

use Illuminate\Support\Arr;

$array = Arr::add(['name' => 'Desk'], 'price', 100);

// or this one:
  
  
$array = Arr::add($array, 'price', 100);
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language