HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier.func.php
Go to the documentation of this file.
00001 <?php
00002 
00015 function HTMLPurifier($html, $config = null) {
00016     static $purifier = false;
00017     if (!$purifier) {
00018         $purifier = new HTMLPurifier();
00019     }
00020     return $purifier->purify($html, $config);
00021 }
00022 
00023 // vim: et sw=4 sts=4