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.

foreachto iterate over the array? – N Rohler Oct 24 '12 at 18:50