array key value push php code example
Example 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";
Example 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"];
}