Sorry, you might have to use the asXML()
method to get the text, rather than just (string)
, because it contains child elements. My bad.
$xml = simplexml_load_string( $wpbb_xml_content );
$content = $xml->Details->asXML();
Give that a whirl.
Sorry, you might have to use the asXML()
method to get the text, rather than just (string)
, because it contains child elements. My bad.
$xml = simplexml_load_string( $wpbb_xml_content );
$content = $xml->Details->asXML();
Give that a whirl.