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 an array of field names. I would like to use those to populate the keys of another array, which will have empty values as default. Is there a single command I can do this with?

share|improve this question

3 Answers

up vote 2 down vote accepted

As of PHP 5.2.0 you can also use array_fill_keys

array_fill_keys( array('foo', 'bar', 'baz'), NULL);

which will give

Array
(
    [foo] => 
    [bar] => 
    [baz] => 
)
share|improve this answer

Try the array_combine and array_fill functions:

array_combine($arrayOfKeys, array_fill(0, count($arrayOfKeys), null))

Or, as array_fill is only available since PHP 4.2, try array_pad instead:

array_combine($arrayOfKeys, array_pad(array(), count($arrayOfKeys), null))
share|improve this answer
1  
only available since PHP 4.2 - Released: 22 April 2002 de3.php.net/releases ;) – Gordon Apr 23 '10 at 15:34
2  
@Gordon: It’s sad, but there are servers out there that still have a lower PHP version running. – Gumbo Apr 23 '10 at 15:43

If I understand your question, you need array_combine()

share|improve this answer

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.