Code: Alles auswählen
preg_match("/<\?xml(.*)<\/RESPONSE>/Uis", $return, $return);
$trans = array("ä" => "ä", "ö" => "ö", "ü" => "ü");
$return["0"] = strtr($return["0"], $trans);
echo $return["0"];
$xml = simplexml_load_string($return["0"]);