Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 arrays

$arr1 = Array
(
    [0] => 12
    [1] => 4
    [2] => 8
    [3] => xx
    [4] => 1
    [5] => 1year
    [6] => 7
)
$arr2 = Array
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
    [6] => 7
)

I want to create a new array with the values of a2 as keys in $arr1. My resultant array should be like this

$arr3 = Array
(
    [1] => 12
    [2] => 4
    [3] => 8
    [4] => xx
    [5] => 1
    [6] => 1year
    [7] => 7
)
share|improve this question
1  
What is your question? – Pekka 웃 Jan 13 '11 at 12:47
@Pekka how to array_combine($arr2, $arr1)? ;) – Gordon Jan 13 '11 at 12:54
@Gordon fair enough :) – Pekka 웃 Jan 13 '11 at 12:54

3 Answers

$arr3 = array_combine($arr2, $arr1);
print_r($arr3);

Next time please consult the manual first.

share|improve this answer
Thanks. Corrected my answer. – rik Jan 13 '11 at 13:30

You need array_combine.

share|improve this answer

whats about looking into php manual? and find array_combine($keys, $values)

share|improve this answer
You are very clever to snidely make your point by using a word that is not in the dictionary and a sentence that would make a grammar book curl its pages in horror ;) – Peter Ajtai Aug 4 '11 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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