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.

Possible Duplicate:
Search array keys and return the index of matched key

In my code I'm doing $params[ltrim($part, ':')] = null; in order to get an array that looks like this:

Array
(
    [id] => 
    [random] => 
    [something] => 
)

I need a way of setting the values for each element sequentially without knowing its index. In this example, index 0 would be id, 1 would be random and so on. I tried setting it using 0 and 1 anyway and ended up with an array like this:

Array
(
    [id] => 
    [lol] => 
    [0] => value1
    [1] => value2
)

is there a way I can do this? Thank you.

share|improve this question
1  
Is there a reason you're not just using foreach to iterate over the array? – N Rohler Oct 24 '12 at 18:50

marked as duplicate by hakre, tereško, Jocelyn, Dan J, SomeKittens Oct 25 '12 at 0:13

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

You could use foreach to iterate through an associative array

<?php

foreach( $arr as $key => $value ) {
    $arr[$key] = "some value";
}

/*
Array
(
    [id] => some value
    [random] => some value
    [something] => some value
)
*/
share|improve this answer

Next to your $params array (which you already created), create a $values array with the values indexed as you need or have them. Then just combine:

$final = array_combine(array_keys($params), $values);

If you create the $params array firsthand with those names as values instead of keys, you can even spare the array_keys call.

share|improve this answer

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