No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

array_fill_keys

(PHP 5 >= 5.2.0, PHP 7)

array_fill_keysFill an array with values, specifying keys

Description

array_fill_keys ( array $keys , mixed $value ) : array

Fills an array with the value of the value parameter, using the values of the keys array as keys.

PHP: array_fill_keys - Manual Home of Manuel PHP  Contents Haut

Parameters

keys

Array of values that will be used as keys. Illegal values for key will be converted to string.

value

Value to use for filling

PHP: array_fill_keys - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the filled array

PHP: array_fill_keys - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 array_fill_keys() example

<?php
$keys 
= array('foo'510'bar');
$a array_fill_keys($keys'banana');
print_r($a);
?>

The above example will output:

Array
(
    [foo] => banana
    [5] => banana
    [10] => banana
    [bar] => banana
)

PHP: array_fill_keys - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph