2014-04-03 11:03:54 +08:00
|
|
|
|
<?php
|
2015-12-24 00:33:52 +08:00
|
|
|
|
|
|
|
|
|
namespace QL;
|
|
|
|
|
|
2015-12-27 23:38:47 +08:00
|
|
|
|
use phpQuery,Exception,ReflectionClass;
|
2015-12-24 00:33:52 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
/**
|
|
|
|
|
* QueryList
|
|
|
|
|
*
|
|
|
|
|
* 一个基于phpQuery的通用列表采集类
|
|
|
|
|
*
|
|
|
|
|
* @author Jaeger
|
|
|
|
|
* @email 734708094@qq.com
|
|
|
|
|
* @link http://git.oschina.net/jae/QueryList
|
2015-12-29 21:45:55 +08:00
|
|
|
|
* @version 3.1.1
|
2014-06-12 14:58:02 +08:00
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
*
|
|
|
|
|
//获取CSDN移动开发栏目下的文章列表标题
|
|
|
|
|
$hj = QueryList::Query('http://mobile.csdn.net/',array("title"=>array('.unit h1','text')));
|
2015-12-07 21:09:01 +08:00
|
|
|
|
print_r($hj->data);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
|
2014-09-18 17:48:03 +08:00
|
|
|
|
//回调函数1
|
|
|
|
|
function callfun1($content,$key)
|
|
|
|
|
{
|
|
|
|
|
return '回调函数1:'.$key.'-'.$content;
|
|
|
|
|
}
|
|
|
|
|
class HJ{
|
|
|
|
|
//回调函数2
|
|
|
|
|
static public function callfun2($content,$key)
|
|
|
|
|
{
|
|
|
|
|
return '回调函数2:'.$key.'-'.$content;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-06-12 14:58:02 +08:00
|
|
|
|
//获取CSDN文章页下面的文章标题和内容
|
|
|
|
|
$url = 'http://www.csdn.net/article/2014-06-05/2820091-build-or-buy-a-mobile-game-backend';
|
2015-12-29 21:45:55 +08:00
|
|
|
|
$rules = array(
|
2014-09-18 17:48:03 +08:00
|
|
|
|
'title'=>array('h1','text','','callfun1'), //获取纯文本格式的标题,并调用回调函数1
|
|
|
|
|
'summary'=>array('.summary','text','-input strong'), //获取纯文本的文章摘要,但保strong标签并去除input标签
|
|
|
|
|
'content'=>array('.news_content','html','div a -.copyright'), //获取html格式的文章内容,但过滤掉div和a标签,去除类名为copyright的元素
|
|
|
|
|
'callback'=>array('HJ','callfun2') //调用回调函数2作为全局回调函数
|
2014-06-12 14:58:02 +08:00
|
|
|
|
);
|
|
|
|
|
$rang = '.left';
|
2015-12-29 21:45:55 +08:00
|
|
|
|
$hj = QueryList::Query($url,$rules,$rang);
|
2015-12-07 21:09:01 +08:00
|
|
|
|
print_r($hj->data);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
|
|
|
|
|
//继续获取右边相关热门文章列表的标题以及链接地址
|
|
|
|
|
$hj->setQuery(array('title'=>array('','text'),'url'=>array('a','href')),'#con_two_2 li');
|
2015-12-07 21:09:01 +08:00
|
|
|
|
//输出数据
|
|
|
|
|
echo $hj->getData();
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
*/
|
2015-12-24 00:33:52 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
class QueryList
|
|
|
|
|
{
|
2015-12-07 21:09:01 +08:00
|
|
|
|
public $data;
|
|
|
|
|
public $html;
|
|
|
|
|
private $pqHtml;
|
|
|
|
|
private $outputEncoding = false;
|
|
|
|
|
private $inputEncoding = false;
|
2014-04-30 11:31:04 +08:00
|
|
|
|
private $htmlEncoding;
|
2015-12-07 21:09:01 +08:00
|
|
|
|
public static $instances;
|
|
|
|
|
|
|
|
|
|
public function __construct() {
|
2014-12-18 16:27:03 +08:00
|
|
|
|
}
|
2014-04-30 11:31:04 +08:00
|
|
|
|
/**
|
2014-06-12 14:58:02 +08:00
|
|
|
|
* 静态方法,访问入口
|
2014-04-30 11:31:04 +08:00
|
|
|
|
* @param string $page 要抓取的网页URL地址(支持https);或者是html源代码
|
2015-12-29 21:45:55 +08:00
|
|
|
|
* @param array $rules 【选择器数组】说明:格式array("名称"=>array("选择器","类型"[,"标签过滤列表"][,"回调函数"]),.......[,"callback"=>"全局回调函数"]);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
* 【选择器】说明:可以为任意的jQuery选择器语法
|
|
|
|
|
* 【类型】说明:值 "text" ,"html" ,"HTML标签属性" ,
|
2015-12-29 21:45:55 +08:00
|
|
|
|
* 【标签过滤列表】:可选,要过滤的选择器名,多个用空格隔开,当标签名前面添加减号(-)时(此时标签可以为任意的元素选择器),表示移除该标签以及标签内容,否则当【类型】值为text时表示需要保留的HTML标签,为html时表示要过滤掉的HTML标签
|
2014-09-18 17:48:03 +08:00
|
|
|
|
* 【回调函数】/【全局回调函数】:可选,字符串(函数名) 或 数组(array("类名","类的静态方法")),回调函数应有俩个参数,第一个参数是选择到的内容,第二个参数是选择器数组下标,回调函数会覆盖全局回调函数
|
|
|
|
|
*
|
2015-12-29 21:45:55 +08:00
|
|
|
|
* @param string $range 【块选择器】:指 先按照规则 选出 几个大块 ,然后再分别再在块里面 进行相关的选择
|
2014-04-30 11:31:04 +08:00
|
|
|
|
* @param string $outputEncoding【输出编码格式】指要以什么编码输出(UTF-8,GB2312,.....),防止出现乱码,如果设置为 假值 则不改变原字符串编码
|
2015-12-07 21:09:01 +08:00
|
|
|
|
* @param string $inputEncoding 【输入编码格式】明确指定输入的页面编码格式(UTF-8,GB2312,.....),防止出现乱码,如果设置为 假值 则自动识别
|
|
|
|
|
* @param bool|false $removeHead 【是否移除页面头部区域】 乱码终极解决方案
|
|
|
|
|
* @return mixed
|
2014-04-30 11:31:04 +08:00
|
|
|
|
*/
|
2015-12-29 21:45:55 +08:00
|
|
|
|
public static function Query($page,array $rules, $range = '', $outputEncoding = null, $inputEncoding = null,$removeHead = false)
|
2014-06-12 14:58:02 +08:00
|
|
|
|
{
|
2015-12-29 21:45:55 +08:00
|
|
|
|
return self::getInstance()->_query($page, $rules, $range, $outputEncoding, $inputEncoding,$removeHead);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-06-12 14:58:02 +08:00
|
|
|
|
/**
|
2015-12-07 21:09:01 +08:00
|
|
|
|
* 运行QueryList扩展
|
|
|
|
|
* @param $class
|
|
|
|
|
* @param array $args
|
|
|
|
|
* @return mixed
|
2015-12-23 18:11:45 +08:00
|
|
|
|
* @throws Exception
|
2014-06-12 14:58:02 +08:00
|
|
|
|
*/
|
2015-12-07 21:09:01 +08:00
|
|
|
|
public static function run($class,$args = array())
|
2014-06-12 14:58:02 +08:00
|
|
|
|
{
|
2015-12-27 23:38:47 +08:00
|
|
|
|
$extension = self::getInstance("QL\\Ext\\{$class}");
|
2015-12-07 21:09:01 +08:00
|
|
|
|
return $extension->run($args);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取任意实例
|
|
|
|
|
* @return mixed
|
2015-12-23 18:11:45 +08:00
|
|
|
|
* @throws Exception
|
2015-12-07 21:09:01 +08:00
|
|
|
|
*/
|
|
|
|
|
public static function getInstance()
|
|
|
|
|
{
|
|
|
|
|
$args = func_get_args();
|
2015-12-23 18:11:45 +08:00
|
|
|
|
count($args) || $args = array(self::class);
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$key = md5(serialize($args));
|
|
|
|
|
$className = array_shift($args);
|
|
|
|
|
if(!class_exists($className)) {
|
2015-12-24 00:33:52 +08:00
|
|
|
|
throw new Exception("no class {$className}");
|
2015-12-07 21:09:01 +08:00
|
|
|
|
}
|
|
|
|
|
if(!isset(self::$instances[$key])) {
|
2015-12-27 23:38:47 +08:00
|
|
|
|
$rc = new ReflectionClass($className);
|
2015-12-07 21:09:01 +08:00
|
|
|
|
self::$instances[$key] = $rc->newInstanceArgs($args);
|
|
|
|
|
}
|
|
|
|
|
return self::$instances[$key];
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-12 14:58:02 +08:00
|
|
|
|
/**
|
2015-12-07 21:09:01 +08:00
|
|
|
|
* 获取目标页面源码(主要用于调试)
|
|
|
|
|
* @param bool|true $rel
|
2014-06-12 14:58:02 +08:00
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2015-12-07 21:09:01 +08:00
|
|
|
|
public function getHtml($rel = true)
|
|
|
|
|
{
|
|
|
|
|
return $rel?$this->qpHtml:$this->html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取采集结果数据
|
|
|
|
|
* @param callback $callback
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function getData($callback = null)
|
|
|
|
|
{
|
|
|
|
|
if(is_callable($callback)){
|
|
|
|
|
return array_map($callback,$this->data);
|
|
|
|
|
}
|
|
|
|
|
return $this->data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 重新设置选择器
|
2015-12-29 21:45:55 +08:00
|
|
|
|
* @param $rules
|
|
|
|
|
* @param string $range
|
2015-12-07 21:09:01 +08:00
|
|
|
|
* @param string $outputEncoding
|
|
|
|
|
* @param string $inputEncoding
|
|
|
|
|
* @param bool|false $removeHead
|
|
|
|
|
* @return QueryList
|
|
|
|
|
*/
|
2015-12-29 21:45:55 +08:00
|
|
|
|
public function setQuery(array $rules, $range = '',$outputEncoding = null, $inputEncoding = null,$removeHead = false)
|
2014-06-12 14:58:02 +08:00
|
|
|
|
{
|
2015-12-29 21:45:55 +08:00
|
|
|
|
return $this->_query($this->html,$rules, $range, $outputEncoding, $inputEncoding,$removeHead);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2015-12-29 21:45:55 +08:00
|
|
|
|
private function _query($page,array $rules, $range, $outputEncoding, $inputEncoding,$removeHead)
|
2014-04-30 11:31:04 +08:00
|
|
|
|
{
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data = array();
|
|
|
|
|
$this->html = $this->_isURL($page)?$this->_request($page):$page;
|
|
|
|
|
$outputEncoding && $this->outputEncoding = $outputEncoding;
|
|
|
|
|
$inputEncoding && $this->inputEncoding = $inputEncoding;
|
|
|
|
|
$removeHead && $this->html = $this->_removeHead($this->html);
|
|
|
|
|
$this->pqHtml = '';
|
|
|
|
|
if(empty($this->html)){
|
|
|
|
|
trigger_error("The received content is empty!",E_USER_NOTICE);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
|
|
|
|
//获取编码格式
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->htmlEncoding = $this->inputEncoding?$this->inputEncoding:$this->_getEncode($this->html);
|
2014-12-18 16:27:03 +08:00
|
|
|
|
// $this->html = $this->_removeTags($this->html,array('script','style'));
|
2015-12-29 21:45:55 +08:00
|
|
|
|
$this->regArr = $rules;
|
|
|
|
|
$this->regRange = $range;
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->_getList();
|
|
|
|
|
return $this;
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
private function _getList()
|
|
|
|
|
{
|
2015-12-24 00:33:52 +08:00
|
|
|
|
$this->inputEncoding && phpQuery::$defaultCharset = $this->inputEncoding;
|
|
|
|
|
$document = phpQuery::newDocumentHTML($this->html);
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->qpHtml = $document->htmlOuter();
|
2014-04-30 11:31:04 +08:00
|
|
|
|
if (!empty($this->regRange)) {
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$robj = pq($document)->find($this->regRange);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
$i = 0;
|
|
|
|
|
foreach ($robj as $item) {
|
|
|
|
|
while (list($key, $reg_value) = each($this->regArr)) {
|
2014-09-18 17:48:03 +08:00
|
|
|
|
if($key=='callback')continue;
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$tags = isset($reg_value[2])?$reg_value[2]:'';
|
2014-04-30 11:31:04 +08:00
|
|
|
|
$iobj = pq($item)->find($reg_value[0]);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
switch ($reg_value[1]) {
|
|
|
|
|
case 'text':
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = $this->_allowTags(pq($iobj)->html(),$tags);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
case 'html':
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = $this->_stripTags(pq($iobj)->html(),$tags);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = pq($iobj)->attr($reg_value[1]);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
|
|
|
|
if(isset($reg_value[3])){
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = call_user_func($reg_value[3],$this->data[$i][$key],$key);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}else if(isset($this->regArr['callback'])){
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = call_user_func($this->regArr['callback'],$this->data[$i][$key],$key);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
|
|
|
|
//重置数组指针
|
|
|
|
|
reset($this->regArr);
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
while (list($key, $reg_value) = each($this->regArr)) {
|
2014-09-18 17:48:03 +08:00
|
|
|
|
if($key=='callback')continue;
|
2015-12-24 00:33:52 +08:00
|
|
|
|
$document = phpQuery::newDocumentHTML($this->html);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$tags = isset($reg_value[2])?$reg_value[2]:'';
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$lobj = pq($document)->find($reg_value[0]);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
$i = 0;
|
|
|
|
|
foreach ($lobj as $item) {
|
|
|
|
|
switch ($reg_value[1]) {
|
|
|
|
|
case 'text':
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = $this->_allowTags(pq($item)->html(),$tags);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
case 'html':
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = $this->_stripTags(pq($item)->html(),$tags);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = pq($item)->attr($reg_value[1]);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
|
|
|
|
if(isset($reg_value[3])){
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = call_user_func($reg_value[3],$this->data[$i][$key],$key);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}else if(isset($this->regArr['callback'])){
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data[$i][$key] = call_user_func($this->regArr['callback'],$this->data[$i][$key],$key);
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$i++;
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($this->outputEncoding) {
|
|
|
|
|
//编码转换
|
2015-12-07 21:09:01 +08:00
|
|
|
|
$this->data = $this->_arrayConvertEncoding($this->data, $this->outputEncoding, $this->htmlEncoding);
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
2015-12-24 00:33:52 +08:00
|
|
|
|
phpQuery::$documents = array();
|
2014-04-30 11:31:04 +08:00
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* URL请求
|
|
|
|
|
* @param $url
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function _request($url)
|
|
|
|
|
{
|
|
|
|
|
if(function_exists('curl_init')){
|
|
|
|
|
$ch = curl_init();
|
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
|
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
|
|
|
|
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
|
|
|
|
|
curl_setopt($ch, CURLOPT_REFERER, $url);
|
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
|
$result = curl_exec($ch);
|
|
|
|
|
curl_close($ch);
|
|
|
|
|
}elseif(version_compare(PHP_VERSION, '5.0.0')>=0){
|
|
|
|
|
$opts = array(
|
|
|
|
|
'http' => array(
|
|
|
|
|
'header' => "Referer:{$url}"
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
$result = file_get_contents($url,false,stream_context_create($opts));
|
|
|
|
|
}else{
|
|
|
|
|
$result = file_get_contents($url);
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 移除页面head区域代码
|
|
|
|
|
* @param $html
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
private function _removeHead($html)
|
|
|
|
|
{
|
|
|
|
|
return preg_replace('/<head.+?>.+<\/head>/is','<head></head>',$html);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取文件编码
|
|
|
|
|
* @param $string
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function _getEncode($string)
|
|
|
|
|
{
|
|
|
|
|
return mb_detect_encoding($string, array('ASCII', 'GB2312', 'GBK', 'UTF-8'));
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
/**
|
2014-11-26 00:26:25 +08:00
|
|
|
|
* 转换数组值的编码格式
|
2014-04-30 11:31:04 +08:00
|
|
|
|
* @param array $arr
|
|
|
|
|
* @param string $toEncoding
|
|
|
|
|
* @param string $fromEncoding
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
private function _arrayConvertEncoding($arr, $toEncoding, $fromEncoding)
|
|
|
|
|
{
|
2014-11-26 00:26:25 +08:00
|
|
|
|
eval('$arr = '.iconv($fromEncoding, $toEncoding.'//IGNORE', var_export($arr,TRUE)).';');
|
2014-04-30 11:31:04 +08:00
|
|
|
|
return $arr;
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-04-30 11:31:04 +08:00
|
|
|
|
/**
|
|
|
|
|
* 简单的判断一下参数是否为一个URL链接
|
|
|
|
|
* @param string $str
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
|
|
|
|
private function _isURL($str)
|
|
|
|
|
{
|
|
|
|
|
if (preg_match('/^http(s)?:\\/\\/.+/', $str)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-06-12 14:58:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 去除特定的html标签
|
|
|
|
|
* @param string $html
|
2014-09-18 17:48:03 +08:00
|
|
|
|
* @param string $tags_str 多个标签名之间用空格隔开
|
2014-06-12 14:58:02 +08:00
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2014-09-18 17:48:03 +08:00
|
|
|
|
private function _stripTags($html,$tags_str)
|
2014-06-12 14:58:02 +08:00
|
|
|
|
{
|
2014-09-18 17:48:03 +08:00
|
|
|
|
$tagsArr = $this->_tag($tags_str);
|
|
|
|
|
$html = $this->_removeTags($html,$tagsArr[1]);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$p = array();
|
2014-09-18 17:48:03 +08:00
|
|
|
|
foreach ($tagsArr[0] as $tag) {
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$p[]="/(<(?:\/".$tag."|".$tag.")[^>]*>)/i";
|
|
|
|
|
}
|
|
|
|
|
$html = preg_replace($p,"",trim($html));
|
|
|
|
|
return $html;
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-06-12 14:58:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 保留特定的html标签
|
|
|
|
|
* @param string $html
|
2014-09-18 17:48:03 +08:00
|
|
|
|
* @param string $tags_str 多个标签名之间用空格隔开
|
2014-06-12 14:58:02 +08:00
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2014-09-18 17:48:03 +08:00
|
|
|
|
private function _allowTags($html,$tags_str)
|
2014-06-12 14:58:02 +08:00
|
|
|
|
{
|
2014-09-18 17:48:03 +08:00
|
|
|
|
$tagsArr = $this->_tag($tags_str);
|
|
|
|
|
$html = $this->_removeTags($html,$tagsArr[1]);
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$allow = '';
|
2014-09-18 17:48:03 +08:00
|
|
|
|
foreach ($tagsArr[0] as $tag) {
|
2014-06-12 14:58:02 +08:00
|
|
|
|
$allow .= "<$tag> ";
|
|
|
|
|
}
|
|
|
|
|
return strip_tags(trim($html),$allow);
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-09-18 17:48:03 +08:00
|
|
|
|
private function _tag($tags_str)
|
|
|
|
|
{
|
|
|
|
|
$tagArr = preg_split("/\s+/",$tags_str,-1,PREG_SPLIT_NO_EMPTY);
|
|
|
|
|
$tags = array(array(),array());
|
|
|
|
|
foreach($tagArr as $tag)
|
|
|
|
|
{
|
|
|
|
|
if(preg_match('/-(.+)/', $tag,$arr))
|
|
|
|
|
{
|
|
|
|
|
array_push($tags[1], $arr[1]);
|
|
|
|
|
}else{
|
|
|
|
|
array_push($tags[0], $tag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $tags;
|
|
|
|
|
}
|
2015-12-07 21:09:01 +08:00
|
|
|
|
|
2014-09-18 17:48:03 +08:00
|
|
|
|
/**
|
|
|
|
|
* 移除特定的html标签
|
|
|
|
|
* @param string $html
|
|
|
|
|
* @param array $tags 标签数组
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function _removeTags($html,$tags)
|
|
|
|
|
{
|
|
|
|
|
$tag_str = '';
|
2014-11-26 00:26:25 +08:00
|
|
|
|
if(count($tags))
|
|
|
|
|
{
|
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
|
$tag_str .= $tag_str?','.$tag:$tag;
|
|
|
|
|
}
|
2015-12-24 00:33:52 +08:00
|
|
|
|
phpQuery::$defaultCharset = $this->inputEncoding?$this->inputEncoding:$this->htmlEncoding;
|
|
|
|
|
$doc = phpQuery::newDocumentHTML($html);
|
2014-11-26 00:26:25 +08:00
|
|
|
|
pq($doc)->find($tag_str)->remove();
|
|
|
|
|
$html = pq($doc)->htmlOuter();
|
|
|
|
|
$doc->unloadDocument();
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}
|
2014-11-26 00:26:25 +08:00
|
|
|
|
return $html;
|
2014-09-18 17:48:03 +08:00
|
|
|
|
}
|
2014-06-12 14:58:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-23 18:11:45 +08:00
|
|
|
|
/*
|
2015-12-07 21:09:01 +08:00
|
|
|
|
class Autoload
|
|
|
|
|
{
|
|
|
|
|
public static function load($className)
|
|
|
|
|
{
|
|
|
|
|
$files = array(
|
|
|
|
|
sprintf('%s/extensions/%s.php',__DIR__,$className),
|
|
|
|
|
sprintf('%s/extensions/vendors/%s.php',__DIR__,$className)
|
|
|
|
|
);
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
|
if(is_file($file)){
|
|
|
|
|
require $file;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
2015-12-07 21:09:01 +08:00
|
|
|
|
spl_autoload_register(array('Autoload','load'));
|
2014-09-18 17:48:03 +08:00
|
|
|
|
|
2015-12-23 18:11:45 +08:00
|
|
|
|
*/
|