gpt4 book ai didi

php - 我如何配置 HTML Purifier 以允许图像 src 的数据 URI?

转载 作者:可可西里 更新时间:2023-11-01 12:29:04 26 4
gpt4 key购买 nike

如何为图像标签的 src 属性允许 base64 数据?我看到这样的代码:

$config->set('URI.AllowedSchemes', array('http' => true, 'https' => true, 'mailto' => true, 'ftp' => true, 'nntp' => true, 'news' => true, 'data' => true));

在这种情况下,data => true 是否允许 base64?如果是这样,我怎样才能只为 img 标签的 src 属性允许 base64 数据? (我不想在其他情况下允许数据 URI。)

我想做这样的事情:

$ def-> addAttribute ('a', 'target', 'Enum # _blank, _self, _target, _top');     

但在我的例子中是这样的:

$ def-> addAtribute ('img', 'src', 'Enum # data, http, https, ...);

这可能吗?

最佳答案

简单:只需在您允许的方案中包含数据:

$config->set('URI.AllowedSchemes', array('data' => true));

关于php - 我如何配置 HTML Purifier 以允许图像 src 的数据 URI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26524222/

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