I have an array like this:
$arrayIn = [
[ 0 => "3",
1 => "12345"
],
[ 0 => "2",
1 => "123"
]
];
and want to get an array like this:
$arrayOut = [
12345 => "3",
123 => "2"
];
I tried with array_values and array_combine but can't get this result. How can I do that?