If you have a multidimensional array like this:
[
['foo', 'bar'],
['fizz', 'buzz'],
]
And you want to change it to an associative array like this:
[
'foo' => 'bar',
'fizz' => 'buzz',
]
You can use this code:
$multidimensionalArray = [
['foo', 'bar'],
...