Rate this script:  I Love it  /   I Hate it

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>';
}

 

 

 
Debugging SimpleXML Objects scripts | Debugging SimpleXML Objects snippet | Debugging SimpleXML Objects example | Debugging SimpleXML Objects tutorial | Debugging SimpleXML Objects code