php array push with key code example

Example 1: array_push

$array[$key] = $value;
// or
$array[] = $value;
// or
array_push($array, [ mixed $... ]);

Example 2: php array push with key

"red","b"=>"green");
array_push($a,"blue","yellow");
print_r($a);
?>

Example 3: 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";

Example 4: 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"];
}

Example 5: add object in array php

$myArray = array("name" => "my name");
echo json_encode($myArray);

Tags:

Misc Example