Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i follow this document on home page of HTML Purifier, but it's not word. This is my code

require_once 'library/HTMLPurifier.auto.php';
$purifier = new HTMLPurifier();

$config = HTMLPurifier_Config::createDefault();
$config->set('Core.DefinitionCache', null);
$config->set('HTML.DefinitionID', 'enduser-customize.html tutorial');
$config->set('HTML.DefinitionRev', 1);
$config->set('Cache.DefinitionImpl', null);

$config->set('Filter.YouTube', true);

$dirty_html = $_POST['content'];

$clean_html = $purifier->purify($dirty_html);

cache file still create in library\HTMLPurifier\DefinitionCache\Serializer\HTML

share|improve this question

1 Answer

You need to pass $config to the HTML Purifier constructor.

share|improve this answer
u can show me example ? .. and i have problem, when i run script, i got Notice Notice: Core.DefinitionCache is an alias, preferred directive name is Cache.DefinitionImpl in D:\UniServer\www\vidu\purifier\library\HTMLPurifier\Config.php on line 693 .. how to fix it – Mr Phi Mar 12 '12 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.