2

リンクとhtmlpurfierに関する古い問題。私はこのコードを使用しています:

$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>

何か案は?

4

1 に答える 1

3

魔法の引用符をオフにします。http://php.net/manual/en/security.magicquotes.disabling.php

于 2012-08-17T19:59:33.877 に答える