Syntax
array array_fill_keys ( array $keys, mixed $value );
|
Definition and Usage
Fills an array with the value of the
value parameter, using the values of the
keys array as keys.
Paramters
Parameter | Description |
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
Example
Try out following example:
<?php
$keys = array('foo', 5, 10, 'bar');
$a = array_fill_keys($keys, 'banana');
print_r($a)
?>
|
This will produce following result:
Array
(
[foo] => banana
[5] => banana
[10] => banana
[bar] => banana
)
No comments:
Post a Comment