Skip to content

Instantly share code, notes, and snippets.

@gueff
Last active May 3, 2023 07:55
Show Gist options
  • Save gueff/09a61713a73640a2d547 to your computer and use it in GitHub Desktop.
Save gueff/09a61713a73640a2d547 to your computer and use it in GitHub Desktop.
<?php
/**
* @param string $sMarkup
* @return string
*/
function beautifyXml($sMarkup = '') : string
{
$oDOMDocument = new DOMDocument();
$oDOMDocument->preserveWhiteSpace = false;
$oDOMDocument->loadXML($sMarkup);
$oDOMDocument->formatOutput = true;
$sMarkup = $oDOMDocument->saveXml();
return $sMarkup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment