
1st November 2011, 08:58
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,066
Thanks: 697
Thanked 4,248 Times in 3,260 Posts
|
|
As the returned error is a XML document, you could have parsed it with simplexml like this to get a object of the error:
$xml = simplexml_load_string($videosJson);
print_r($xml);
|