Answers for "push key and value in array php"

PHP
67

php append to array

$myArr = [1, 2, 3, 4];

array_push($myArr, 5, 8);
print_r($myArr); // [1, 2, 3, 4, 5, 8]

$myArr[] = -1;
print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
Posted by: Guest on January-21-2020
3

php add 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
5

push key value array php

$a = array("key1"=>"value1", "key2"=>"value2");

// to append "key3" - "value3":
$a["key3"] = "value3"
Posted by: Guest on August-23-2021
0

php array push with key

<?php
$a=array("a"=>"red","b"=>"green");
array_push($a,"blue","yellow");
print_r($a);
?>
Posted by: Guest on March-08-2021
1

insert key-value pair into array php

// If you are creating new array then try this :
$arr = array("key" => "value");

// And if array is already created then try this :
$arr["key"] = "value";
Posted by: Guest on April-28-2020
2

php array push with key

// Error : "array_push() expects parameter 1 to be array, null given"
// Don't array_push($array,$arrayValueToPush); 
// Set the array value.
$array["arrayKey"] = $arrayValue;
//----------------------------------------
$newArray = [];
foreach ($arrayItems as $key => $arrayItem) {
  $newArray[$key]["arrayItemKey1"] = $arrayItem["arrayItemKey1FromArrayItem"];
  $newArray[$key]["arrayItemKey2"] = $arrayItem["arrayItemKey2FromArrayItem"];
}
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language