数组 函数
PHP Manual

array_combine

(PHP 5)

array_combine 创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值

说明

array array_combine ( array $keys , array $values )

返回一个 array,用来自 keys 数组的值作为键名,来自 values 数组的值作为相应的值。

如果两个数组的单元数不同或者数组为空时返回 FALSE

Example #1 简单的 array_combine() 例子

<?php
$a 
= array('green''red''yellow');
$b = array('avocado''apple''banana');
$c array_combine($a$b);

print_r($c);
?>

以上例程会输出:

Array
(
    [green]  => avocado
    [red]    => apple
    [yellow] => banana
)

参见 array_merge()array_walk()array_values()

参数

keys

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

values

Array of values to be used

返回值

Returns the combined array, FALSE if the number of elements for each array isn't equal.

错误/异常

Throws E_WARNING if the number of elements in keys and values does not match.

更新日志

版本 说明
5.4.0 Previous versions issued E_WARNING and returned FALSE for empty arrays.

范例

Example #2 A simple array_combine() example

<?php
$a 
= array('green''red''yellow');
$b = array('avocado''apple''banana');
$c array_combine($a$b);

print_r($c);
?>

以上例程会输出:

Array
(
    [green]  => avocado
    [red]    => apple
    [yellow] => banana
)

参见


数组 函数
PHP Manual