HTML 净化器编码有帮助吗?

发布于 2024-08-27 09:17:41 字数 236 浏览 7 评论 0原文

我阅读了 http://htmlpurifier.org/docs/enduser-youtube.html doc,但我仍然不知道在哪里放置代码以允许对象、参数和嵌入标签以及 使用实验功能 与我的 htmlpurifier。有人可以告诉我该怎么做吗?

I read the http://htmlpurifier.org/docs/enduser-youtube.html doc, but I still can't figure out where to put the code to allow object, param and embed tags and Use experimental features with my htmlpurifier. Can someone please show me how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫﹏色ふ单纯 2024-09-03 09:17:41

添加这个。

 $config->set('HTML.SafeObject', true);
 $config->set('HTML.SafeEmbed', true);

对此。

 require_once '../../htmlpurifier/library/HTMLPurifier.auto.php';

 $config = HTMLPurifier_Config::createDefault();
 $config->set('Core.Encoding', 'UTF-8'); // replace with your encoding
 $config->set('HTML.Doctype', 'XHTML 1.0 Strict'); // replace with your doctype
 $config->set('HTML.SafeObject', true);
 $config->set('HTML.SafeEmbed', true);
 $purifier = new HTMLPurifier($config);

 $about_me = mysqli_real_escape_string($mysqli, $purifier->purify($_POST['about_me']));

Add this.

 $config->set('HTML.SafeObject', true);
 $config->set('HTML.SafeEmbed', true);

To this.

 require_once '../../htmlpurifier/library/HTMLPurifier.auto.php';

 $config = HTMLPurifier_Config::createDefault();
 $config->set('Core.Encoding', 'UTF-8'); // replace with your encoding
 $config->set('HTML.Doctype', 'XHTML 1.0 Strict'); // replace with your doctype
 $config->set('HTML.SafeObject', true);
 $config->set('HTML.SafeEmbed', true);
 $purifier = new HTMLPurifier($config);

 $about_me = mysqli_real_escape_string($mysqli, $purifier->purify($_POST['about_me']));
猥︴琐丶欲为 2024-09-03 09:17:41

HTML.SafeObject 占用大量内存我不推荐您:

http://support.chamilo.org /问题/1450

The HTML.SafeObject eats a lot of memory I do not recommend you:

http://support.chamilo.org/issues/1450

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文