Debugging SimpleXML Objects
Code
$sxml = simplexml_load_string
($data);
// .. much hate between then and now... //
debugsxml
($sxml);
function debugsxml
($sxml) {
$dom = dom_import_simplexml
($sxml);
printArray
($dom);
}
function printArray
($array){
echo '<pre>';
print_r($array);
echo '</pre>';
}