Skip to content

Instantly share code, notes, and snippets.

@alexcheng1982
Last active August 29, 2015 14:26
Show Gist options
  • Save alexcheng1982/e8f3e3d1d8487b0b0736 to your computer and use it in GitHub Desktop.
Save alexcheng1982/e8f3e3d1d8487b0b0736 to your computer and use it in GitHub Desktop.
PHP HTML tidy

Install php tidy sudo yum install php-tidy then restart Apache

<?php
$html = $this->getChildHtml('description');
$tidy = new Tidy();
$tidy->parseString($html, $config, 'utf8');
$tidy->cleanRepair();
echo $tidy;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment