vote up 1 vote down star

Is it possible to prepend an associative array with literal key=>value pairs? I know that array_unshift() works with numerical keys, but I'm hoping for something that will work with literal keys.

As an example I'd like to do the following:

$array1 = array('fruit3'=>'apple', 'fruit4'=>'orange');
$array2 = array('fruit1'=>'cherry', 'fruit2'=>'blueberry');

// prepend magic

$resulting_array = ('fruit1'=>'cherry', 
                    'fruit2'=>'blueberry', 
                    'fruit3'=>'apple', 
                    'fruit4'=>'orange');
flag

2 Answers

vote up 1 vote down check

Can't you just do:

$resulting_array = $array2 + $array1;

?

link|flag
See also array_merge() and its difference from using the + operator: br.php.net/manual/en/… – Havenard Sep 3 at 1:33
@cletus: Sheesh. Yeah, I can. Not sure what made me think I couldn't or what wasn't working before. Thanks for the response. – Colin Sep 3 at 1:36
@Havenard: Thanks for the additional info. – Colin Sep 3 at 1:36
It is worth noting the difference but that difference is relevant for preserving numeric keys and this array is a "pure" associative array with string keys. – cletus Sep 3 at 1:37
vote up 1 vote down

@Cletus is spot on. Just to add, if the ordering of the elements in the input arrays are ambiguous, and you need the final array to be sorted, you might want to ksort:

$resulting_array = ksort($array1 + $array2);
link|flag
@karim: That's helpful - thanks. – Colin Sep 3 at 1:38

Your Answer

Get an OpenID
or

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