vote up 2 vote down star

I have an array, i tried writing

array_push($json['Request']['Header'], "key" => "val");

but i received an error. Writing the below works but it adds an array instead of just the key/val

array_push($json['Request']['Header'], array("key" => "val"));

..
[0] => Array
        (
            [key] => val
        )

//i would like
...
[key] => val
flag

70% accept rate

3 Answers

vote up 5 vote down check

Why not simply write:

$json['Request']['Header'] = array();
$json['Request']['Header']['key'] = 'val';
link|flag
vote up 2 vote down

Try

$json['Request']['Header']['key'] = 'val';
link|flag
vote up 1 vote down

Use the addition operator to append an associative array:

$json['Request']['Header'] += array("key" => "val");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.