php插件 HTMLPurifier HTML解析器的解决办法
内容摘要
这篇文章主要为大家详细介绍了php插件 HTMLPurifier HTML解析器的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随php教程的小玲来看看吧!HTMLPu
感兴趣的小伙伴,下面一起跟随php教程的小玲来看看吧!HTMLPu
文章正文
这篇文章主要为大家详细介绍了php插件 HTMLPurifier HTML解析器的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随php教程的小玲来看看吧!
HTMLPurifier插件的使用下载HTMLPurifier插件HTMLPurifier插件有用的部分是 library使用HTMLPurifier library类库第一种方式
代码如下:
<?php
/* php教程 www.512Pic.com */
require_once 'HTMLPurifier.auto.php';
$config = HTMLPurifier_Config::createDefault();
?>
或者
代码如下:
<?php
/* php教程 www.512Pic.com */
require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';
$config = HTMLPurifier_Config::createDefault();
?>
官网给出的例子是
代码如下:
require_once 'HTMLPurifier.auto.php';
我同事常用的是
代码如下:
require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';
设置$configconfigdochttp://htmlpurifier.org/live/configdoc/plain.html例子
代码如下:
$config->set('HTML.AllowedElements', array('div'=>true, 'table'=>true, 'tr'=>true, 'td'=>true, 'br'=>true));
$config->set('HTML.Doctype', 'XHTML 1.0 Transitional') //html文档类型(常设)
$config->set('Core.Encoding', 'UTF-8') //字符编码(常设)
HTML允许的元素div元素,table元素,tr元素,td元素,br元素new HTMLPurifier对象
代码如下:
$purifier = new HTMLPurifier($config);
调用HTMLPurifier对象的purify方法
代码如下:
$puri_html = $purifier->purify($html);
第二种方式自定义一个类 HtmlPurifier.php
代码如下:
<?php
/* php教程 www.512Pic.com */
require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';
class Resume_HtmlPurifier implements Zend_Filter_Interface{
protected $_htmlPurifier = null;
public function __construct($options = null)
{
$config = HTMLPurifier_Config::createDefault();
$config->set('Code.Encoding', 'UTF-8');
$config->set('HTML.Doctype', 'XHTML 1.0 Transitional')
if(!is_null($options)){
foreach($options as $option){
$config->set($option[0], $option[1], $option[2]);
}
}
$this->_htmlPurifier = new HTMLPurifier($config);
}
public function filter($value)
{
return $this->_htmlPurifier->purify($value);
}
}
?>
设置config信息例如:
代码如下:
$conf = array(
array('HTML.AllowedElements',
array(
'div' => true,
'table' => true,
'tr' => true,
'td' => true,
'br' => true,
),
false), //允许属性 div table tr td br元素
array('HTML.AllowedAttributes', array('class' => TRUE), false), //允许属性 class
array('Attr.ForbiddenClasses', array('resume_p' => TRUE), false), //禁止classes如
array('AutoFormat.RemoveEmpty', true, false), //去空格
array('AutoFormat.RemoveEmpty.RemoveNbsp', true, false), //去nbsp
array('URI.Disable', true, false),
);
调用
代码如下:
$p = new Resume_HtmlPurifier($conf);
$puri_html = $p->filter($html);
注:关于php插件 HTMLPurifier HTML解析器的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释