array_fill_keys
    (no version information, might be only in CVS)
array_fill_keys -- Fill an array with values, specifying keys
Description
array 
array_fill_keys ( array keys, mixed value )
   Fills an array with the
   value of the value parameter, using the
   values of the keys array as keys.
  
Parameters
   
- keys
- 
       Array of values that will be used as keys
       
- value
- 
       Either an string or an array of values
       
Return Values
   Returns the filled array
  
Examples
   
| Example 1. array_fill_keys() example | 
<?php$keys = array('foo', 5, 10, 'bar');
 $a = array_fill_keys($keys, 'banana');
 print_r($a);
 ?>
 | 
 The above example will output: | Array
(
    [foo] => banana
    [5] => banana
    [10] => banana
    [bar] => banana
) | 
 |