How to convert multidimensional array from the example below
Array
(
[0] => Array
(
[cf] => Juan
[nf] => 5
)
[1] => Array
(
[cf] => Kyu
[nf] => 10
)
)
to an simple array using values as keys and values where [cf] is a key and [nf] is value
Array
(
"Juan"=>"5",
"Kyu"=>"10"
)