用前缀值替换php数组中的数字

时间:2017-01-13 10:54:42

标签: php

我有一个类似的数组: -

array(1,3,5,7,10,12)

我想用其他固定值替换数组中的数字。 例如: -

1 -> 12
2 -> 44
3 -> 32
4 -> 27
5 -> 11
etc. 

在PHP中更改这些值的最佳方法是什么?

2 个答案:

答案 0 :(得分:2)

我看到了在foreach中使用switchcase的方法,但我不知道这是否是最佳方式。

InputMethodManager imm = (InputMethodManager)GetSystemService(Context.InputMethodService);
        imm.ShowSoftInput(_enterPin.FindFocus(), 0);

答案 1 :(得分:1)

试试array_replace;

array_replace($arr1, $arr2);