「php」array_combine()で2個の配列から連想配列を作成する
説明
array_combine ( array $keys , array $values ) : array
keys 配列の値をキーとして、また values 配列の値を対応する値として生成した 配列 を作成します。
使用例
<?php $cftA = array('Uuer01', 'user02', 'user03'); $cftB = array('25', '36', '47'); $res = array_combine($cftA, $cftB); print_r('<pre>'); print_r($res); print_r('</pre>'); ?>
実行結果
Array
(
[Uuer01] => 25
[user02] => 36
[user03] => 47
)