Skip to content

Instantly share code, notes, and snippets.

@tqyq
Last active September 11, 2015 01:33
Show Gist options
  • Save tqyq/d2533ad81754f5ffb8f0 to your computer and use it in GitHub Desktop.
Save tqyq/d2533ad81754f5ffb8f0 to your computer and use it in GitHub Desktop.
tidyHTML php format html to dom
function tidyHTML($buffer) {
// load our document into a DOM object
$dom = new DOMDocument();
// we want nice output
$dom->preserveWhiteSpace = false;
$dom->loadHTML($buffer);
$dom->formatOutput = true;
return($dom->saveHTML());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment