链接和html purfier的老问题。 我正在使用此代码:
$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>
有什么想法吗?