国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > PHP > 正文

淺析php插件 HTMLPurifier HTML解析器

2024-05-04 23:11:48
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
HTMLPurifier插件的使用
下載HTMLPurifier插件
HTMLPurifier插件有用的部分是 library

淺析php插件 HTMLPurifier HTML解析器


使用HTMLPurifier library類庫(kù)
第一種方式

復(fù)制代碼 代碼如下:


<?php
require_once 'HTMLPurifier.auto.php';
$config = HTMLPurifier_Config::createDefault();
?>


或者

復(fù)制代碼 代碼如下:


<?php
require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';
$config = HTMLPurifier_Config::createDefault();
?>


官網(wǎng)給出的例子是

復(fù)制代碼 代碼如下:


require_once 'HTMLPurifier.auto.php';


我同事常用的是

復(fù)制代碼 代碼如下:


require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';


設(shè)置$config
configdoc

例子

復(fù)制代碼 代碼如下:


$config->set('HTML.AllowedElements', array('div'=>true, 'table'=>true, 'tr'=>true, 'td'=>true, 'br'=>true));
$config->set('HTML.Doctype', 'XHTML 1.0 Transitional') //html文檔類型(常設(shè))
$config->set('Core.Encoding', 'UTF-8') //字符編碼(常設(shè))


HTML允許的元素
div元素,table元素,tr元素,td元素,br元素
new HTMLPurifier對(duì)象

復(fù)制代碼 代碼如下:


$purifier = new HTMLPurifier($config);


調(diào)用HTMLPurifier對(duì)象的purify方法

復(fù)制代碼 代碼如下:


$puri_html = $purifier->purify($html);


第二種方式
自定義一個(gè)類 HtmlPurifier.php

復(fù)制代碼 代碼如下:


<?php
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);

}
}
?>


設(shè)置config信息
例如:

復(fù)制代碼 代碼如下:


$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),
);


調(diào)用

復(fù)制代碼 代碼如下:


$p = new Resume_HtmlPurifier($conf);
$puri_html = $p->filter($html);

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 金堂县| 辽宁省| 长乐市| 新邵县| 安西县| 兴海县| 华亭县| 武功县| 达州市| 东兰县| 新宾| 苏尼特左旗| 武义县| 沙湾县| 霍林郭勒市| 齐河县| 松江区| 廊坊市| 迁西县| 望奎县| 肇州县| 丰原市| 黄冈市| 达日县| 东方市| 浙江省| 虹口区| 岳阳市| 蓬安县| 盈江县| 肥乡县| 霍城县| 黑河市| 阿拉善左旗| 宜兰县| 蒲江县| 铜鼓县| 德令哈市| 南丰县| 罗平县| 元朗区|