链接和 html 净化器的老问题。我正在使用这段代码:
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.Allowed', 'p,b,a[href],i');
$config->set('HTML.AllowedAttributes', 'a.href');
$purifier = new HTMLPurifier($config);
但它不起作用。输入
<a href="http://www.google.de">search</a>
将转向
<a href="%5C">search</a>
有任何想法吗?