Add coupled pair to PHP array
I have an array, I tried to write
array_push($json['Request']['Header'], "key" => "val");
but I got an error. The spelling below works, but it adds an array, not just the / val switch
array_push($json['Request']['Header'], array("key" => "val"));
..
[0] => Array
(
[key] => val
)
//i would like
...
[key] => val
+3