gpt4 book ai didi

php - 允许在 HTMLPurifier 中解析完整的 html

转载 作者:行者123 更新时间:2023-11-28 03:21:55 24 4
gpt4 key购买 nike

这是我长期以来遇到的问题 - 我目前接受用户的完整 html 页面作为输入,并希望过滤/清除它。 HTMLpurifier 的问题在于它删除了 head 、 html 和 body 标签——以及头部的样式。我已经谷歌,查看了论坛,尝试实现所写的内容,但没有成功。有人可以帮忙吗?

我想要的:保留 HTML 、 HEAD 、 STYLE 、 BODY 标签

我做了什么:

$config->set('HTML.DefinitionID', 'test');
$config->set('HTML.DefinitionRev', 1);
$config->set('HTML.AllowedElements', array('html','head', 'body', 'style', 'div', 'p'));

if ($def = $config->maybeGetRawHTMLDefinition()) {
$def->addElement('html', 'Block', 'Inline', 'Common', array());
$def->addElement('head', 'Block', 'Inline', 'Common', array());
$def->addElement('style', 'Block', 'Inline', 'Common', array());
$def->addElement('body', 'Block', 'Inline', 'Common', array());

}

最佳答案

为什么不使用 strip_tags?它支持允许的标签列表。

http://www.php.net/manual/en/function.strip-tags.php

关于php - 允许在 HTMLPurifier 中解析完整的 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24037016/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com