开发者

How to add to associate array

I have the following array

$data = array('key1'=>'val1',
              'key2'=>'val2',
              'key3'=>'val3'
             );

I would like to add to the开发者_Python百科 array.

$moreval = array('key4'=>'val4');


You can use array_merge for this.

$data=array_merge($data, array('key4'=>'val4'));

If this wasn't associative, you could use array_push.


you could just use:

$data['key4'] = 'val4';

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜