We can do in such a way:
$array1=array_combine($array1, $array1)$array1 is an array of data. The first parameter will go to be the [key] of the new array and the second parameter will go to be the [value] of the new array, thus making both the [key] and the [value] of the new array having the same value.
Let's said :
$array1(
[1] => a
[3] => b
[4] => c
)
After using the array_combine() function, the $array1 becomes:
$array1(
[a] => a
[b] => b
[c] => c
)
Reference:
1. FormHelper - Setting Option Value in Select Dropdown
2. php.net - array-combine
No comments:
Post a Comment