[3.1.0] Get testing working again for all versions
[htmlpurifier.git] / library / HTMLPurifier.func.php
blobb2e9f8055714059264a3da64577f2b54d9ab55a0
1 <?php
3 /**
4 * @file
5 * Defines a function wrapper for HTML Purifier for quick use.
6 * @note ''HTMLPurifier()'' is NOT the same as ''new HTMLPurifier()''
7 */
9 /**
10 * Purify HTML.
11 * @param $html String HTML to purify
12 * @param $config Configuration to use, can be any value accepted by
13 * HTMLPurifier_Config::create()
15 function HTMLPurifier($html, $config = null) {
16 static $purifier = false;
17 if (!$purifier) {
18 $purifier = new HTMLPurifier();
20 return $purifier->purify($html, $config);