可能重复:
合并PHP数组,一个作为键,另一个作为值?
我有一个键数组,我有一个值数组..如何将数组 A 的值作为数组 B 值的“键”?
array A
[0] => 224
[1] => 77
[2] => 78
[3] => 79
[4] => 80
[5] => 81
[6] => 82
[7] => 76
)
1
array B
Array
(
[0] => Men Shoes
[1] => Fashion Accessories
[2] => Men Apparels
[3] => Shoes & Belts
[4] => Watches & Clocks
[5] => Women Apparels
[6] => Others
[7] => Bags
我想要发生的是让它像这样
array(
[224] => Men Shoes
[77] => Fashion Accessories
[78] => Men Apparells
[79] => Shoes & Belts
[80] => Watches & clocks
[81] => Women Apparels
[82] => Others
[76] => Bags
)