Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@danstreeter
Created August 7, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danstreeter/98381468733a71ca6c310387c951bca7 to your computer and use it in GitHub Desktop.
Save danstreeter/98381468733a71ca6c310387c951bca7 to your computer and use it in GitHub Desktop.
<?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