I have arrays like this.
Array (
[title] => Array ( [0] => Value1 )
[description] => Array ( [0] => Value1 )
)
but i want the arrays to be look like this.
Array ( [title] => Value1 [description] => Value1 )
Simply
$array = array_map(function ($element) {
return $element[0];
}, $array);
Test: http://3v4l.org/qd2eG
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With