Created
August 7, 2019 15:14
-
-
Save danstreeter/98381468733a71ca6c310387c951bca7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* To output XML as a nicely formatted (line breaks and indentations) on screen */ | |
$doc = new \DOMDocument('1.0'); | |
$doc->loadXML($rawXml); | |
$doc->preserveWhiteSpace = false; | |
$doc->formatOutput = true; | |
$xml_string = $doc->saveXML(); | |
echo $xml_string; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment