PHP 中的 array_fill_keys() 函数

phpprogrammingserver side programming

array_fill_keys() 函数使用指定键的值填充数组。它返回已填充的数组。

语法

array_fill_keys(keys, values)

参数

  • keys − 用作键的值数组。

  • values − 将用于填充的值。

返回

array_fill_keys() 函数返回已填充的数组。

示例

<?php
   $arr = array('p', 'q', 'r');
   $res = array_fill_keys($arr, demo);
   print_r($res)
?>

输出

Array (
   [p] => demo
   [q] => demo
   [r] => demo
)

让我们看另一个例子。

示例

<?php
   $arr = array('a', 'b', 'c', 1, 2, 3, 'steve', 'tom', 4, 5);
   $res = array_fill_keys($arr, demo);
   print_r($res)
?>

输出

Array (
   [a] => demo
   [b] => demo
   [c] => demo
   [1] => demo
   [2] => demo
   [3] => demo
   [steve] => demo
   [tom] => demo
   [4] => demo
   [5] => demo
)

相关文章