When creating a new XML document and adding text with umlauts and such
<?php $SimpleXMLElement->asXML(); ?>
will silently NOT output any content with umlauts.
Use htmlentities () while adding Umlauts & co to solve the "problem"
When creating a new XML document and adding text with umlauts and such
<?php $SimpleXMLElement->asXML(); ?>
will silently NOT output any content with umlauts.
Use htmlentities () while adding Umlauts & co to solve the "problem"