My Array looks like this
Array (
[title] => SimpleXMLElement Object (
[0] => Car String
)
)
And should look like this:
Array (
title => Car String
)
I got this array by doing curl_exec a xml file and changed it with "new SimpleXMLElement". Every solution i could find didn't work.
So how can i transform the array? Or is there a more efficient way to get a xml with http header options?