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 that i would like to loop through and combine into an associative array. I would like to use the 2 arrays as the keys for the new associative array. I am new to php so any and all help would be appreciated.

$id = array( 2, 4);

$qty = array( 5, 7);

array('id' => , 'qty' => );

Thanks in advance

I would like to output something like this

array(
'id' => 2,
'qty' => 5),
array(
'id'=> 4,
'qty' => 7
)
share|improve this question
What exactly do you want the output to be? array('id' => array(2, 4), 'qty' => array(5, 7) )? – VoteyDisciple Oct 11 '10 at 15:32
Interpreting your question literally, you cannot use an array as a key. A key must be a scalar value — a string or integer, essentially. – VoteyDisciple Oct 11 '10 at 15:33
1  
$newArray = array('id' => $id, 'qty' => $qty); ??? – Mark Baker Oct 11 '10 at 15:35
array('id' => , 'qty' => ) is invalid; please provide a valid expression. – Gumbo Oct 11 '10 at 15:41
I just edited the question with what i would like to output array to look like. – Tamer Elhotiby Oct 11 '10 at 15:41

1 Answer

up vote 4 down vote accepted

You can do:

$result = array();

for($i=0;$i<count($id);$i++) {
  $result[] = array('id' => $id[$i], 'qty' => $qty[$i]);
}

Added by Mchl: Alternative, IMHO a bit clearer, but it's matter of opinion mostly

$result = array();

foreach($id as $key => $value) {
  $result[] = array('id' => $id[$key], 'qty' => $qty[$key]);
}
share|improve this answer
THANKS SO MUCH!!!. thats exactly what i needed. – Tamer Elhotiby Oct 11 '10 at 15:52

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.