我正在尝试实现 HTMLPURIFIER,但是在回显出我想要净化的 HTML 之后,我仍然得到
<img src="kay.JPG" alt="my picture" />
作为显示内容的一部分,同时它是为了显示图片。我究竟做错了什么?
function readmore_about_cs($row, $id)
{
$config = HTMLPurifier_Config::createDefault();
// configuration goes here:
$config->set('Core.Encoding', 'UTF-8');
$config->set('HTML.Doctype', 'XHTML 1.0 Transitional');
$purifier = new HTMLPurifier($config);
if (isset($_GET['readmore'])) {
$nomore = ($row['about_church_of_christ_content']);
$pure_html = $purifier->purify($nomore);
echo htmlspecialchars($pure_html);
}
else
{
if (strlen(trim($row['about_church_of_christ_content'])) > 350)
{
$shortText = substr(trim($row['about_church_of_christ_content']), 0, 650);
$shortText .= '..<a href="http://127.0.0.1/church/about_cs.php?id='.$id.'&readmore=1">More</a>';
$pure_html = $purifier->purify($shortText);
echo htmlspecialchars($shortText) ;
}
}
}