namespace QL;

use phpQuery,Exception,ReflectionClass;

use Monolog\Logger;

use Monolog\Handler\StreamHandler;

/**

* QueryList

*

* 一个基于phpQuery的通用列表采集类

*

* @author Jaeger

* @email 734708094@qq.com

* @link http://git.oschina.net/jae/QueryList

* @version 3.1.2

*

* @example

*

//获取CSDN移动开发栏目下的文章列表标题

$hj = QueryList::Query('http://mobile.csdn.net/',array("title"=>array('.unit h1','text')));

print_r($hj->data);

//回调函数1

function callfun1($content,$key)

{

return '回调函数1:'.$key.'-'.$content;

}

class HJ{

//回调函数2

static public function callfun2($content,$key)

{

return '回调函数2:'.$key.'-'.$content;

}

}

//获取CSDN文章页下面的文章标题和内容

$url = 'http://www.csdn.net/article/2014-06-05/2820091-build-or-buy-a-mobile-game-backend';

$rules = array(

'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作为全局回调函数

);

$rang = '.left';

$hj = QueryList::Query($url,$rules,$rang);

print_r($hj->data);

//继续获取右边相关热门文章列表的标题以及链接地址

$hj->setQuery(array('title'=>array('','text'),'url'=>array('a','href')),'#con_two_2 li');

//输出数据

echo $hj->getData();

*/

class QueryList

{

public $data;

public $html;

private $page;

private $pqHtml;

private $outputEncoding = false;

private $inputEncoding = false;

private $htmlEncoding;

public static $logger = null;

public static $instances;

public function __construct() {

}

/**

* 静态方法,访问入口

* @param string $page 要抓取的网页URL地址(支持https);或者是html源代码

* @param array $rules 【选择器数组】说明:格式array("名称"=>array("选择器","类型"[,"标签过滤列表"][,"回调函数"]),.......[,"callback"=>"全局回调函数"]);

* 【选择器】说明:可以为任意的jQuery选择器语法

* 【类型】说明:值 "text" ,"html" ,"HTML标签属性" ,

* 【标签过滤列表】:可选,要过滤的选择器名,多个用空格隔开,当标签名前面添加减号(-)时(此时标签可以为任意的元素选择器),表示移除该标签以及标签内容,否则当【类型】值为text时表示需要保留的HTML标签,为html时表示要过滤掉的HTML标签

* 【回调函数】/【全局回调函数】:可选,字符串(函数名) 或 数组(array("类名","类的静态方法")),回调函数应有俩个参数,第一个参数是选择到的内容,第二个参数是选择器数组下标,回调函数会覆盖全局回调函数

*

* @param string $range 【块选择器】:指 先按照规则 选出 几个大块 ,然后再分别再在块里面 进行相关的选择

* @param string $outputEncoding【输出编码格式】指要以什么编码输出(UTF-8,GB2312,.....),防止出现乱码,如果设置为 假值 则不改变原字符串编码

* @param string $inputEncoding 【输入编码格式】明确指定输入的页面编码格式(UTF-8,GB2312,.....),防止出现乱码,如果设置为 假值 则自动识别

* @param bool|false $removeHead 【是否移除页面头部区域】 乱码终极解决方案

* @return mixed

*/

public static function Query($page,array $rules, $range = '', $outputEncoding = null, $inputEncoding = null,$removeHead = false)

{

return self::getInstance()->_query($page, $rules, $range, $outputEncoding, $inputEncoding,$removeHead);

}

/**

* 运行QueryList扩展

* @param $class

* @param array $args

* @return mixed

* @throws Exception

*/

public static function run($class,$args = array())

{

$extension = self::getInstance("QL\\Ext\\{$class}");

return $extension->run($args);

}

/**

* 日志设置

* @param $handler

*/

public static function setLog($handler)

{

if(class_exists(Logger::class))

{

if(is_string($handler))

{

$handler = new StreamHandler($handler,Logger::INFO);

}

self::$logger = new Logger('QueryList');

self::$logger->pushHandler($handler);

}else{

throw new Exception("You need to install the package [monolog/monolog]");

}

}

/**

* 获取任意实例

* @return mixed

* @throws Exception

*/

public static function getInstance()

{

$args = func_get_args();

count($args) || $args = array('QL\QueryList');

$key = md5(serialize($args));

$className = array_shift($args);

if(!class_exists($className)) {

throw new Exception("no class {$className}");

}

if(!isset(self::$instances[$key])) {

$rc = new ReflectionClass($className);

self::$instances[$key] = $rc->newInstanceArgs($args);

}

return self::$instances[$key];

}

/**

* 获取目标页面源码(主要用于调试)

* @param bool|true $rel

* @return string

*/

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;

}

/**

* 重新设置选择器

* @param $rules

* @param string $range

* @param string $outputEncoding

* @param string $inputEncoding

* @param bool|false $removeHead

* @return QueryList

*/

public function setQuery(array $rules, $range = '',$outputEncoding = null, $inputEncoding = null,$removeHead = false)

{

return $this->_query($this->html,$rules, $range, $outputEncoding, $inputEncoding,$removeHead);

}

private function _query($page,array $rules, $range, $outputEncoding, $inputEncoding,$removeHead)

{

$this->data = array();

$this->page = $page;

$this->html = $this->_isURL($this->page)?$this->_request($this->page):$this->page;

$outputEncoding && $this->outputEncoding = $outputEncoding;

$inputEncoding && $this->inputEncoding = $inputEncoding;

$removeHead && $this->html = $this->_removeHead($this->html);

$this->pqHtml = '';

if(empty($this->html)){

$this->_log('The received content is empty!','error');

trigger_error('The received content is empty!',E_USER_NOTICE);

}

//获取编码格式

$this->htmlEncoding = $this->inputEncoding?$this->inputEncoding:$this->_getEncode($this->html);

// $this->html = $this->_removeTags($this->html,array('script','style'));

$this->regArr = $rules;

$this->regRange = $range;

$this->_getList();

$this->_log();

return $this;

}

private function _getList()

{

$this->inputEncoding && phpQuery::$defaultCharset = $this->inputEncoding;

$document = phpQuery::newDocumentHTML($this->html);

$this->qpHtml = $document->htmlOuter();

if (!empty($this->regRange)) {

$robj = pq($document)->find($this->regRange);

$i = 0;

foreach ($robj as $item) {

while (list($key, $reg_value) = each($this->regArr)) {

if($key=='callback')continue;

$tags = isset($reg_value[2])?$reg_value[2]:'';

$iobj = pq($item)->find($reg_value[0]);

switch ($reg_value[1]) {

case 'text':

$this->data[$i][$key] = $this->_allowTags(pq($iobj)->html(),$tags);

break;

case 'html':

$this->data[$i][$key] = $this->_stripTags(pq($iobj)->html(),$tags);

break;

default:

$this->data[$i][$key] = pq($iobj)->attr($reg_value[1]);

break;

}

if(isset($reg_value[3])){

$this->data[$i][$key] = call_user_func($reg_value[3],$this->data[$i][$key],$key);

}else if(isset($this->regArr['callback'])){

$this->data[$i][$key] = call_user_func($this->regArr['callback'],$this->data[$i][$key],$key);

}

}

//重置数组指针

reset($this->regArr);

$i++;

}

} else {

while (list($key, $reg_value) = each($this->regArr)) {

if($key=='callback')continue;

$document = phpQuery::newDocumentHTML($this->html);

$tags = isset($reg_value[2])?$reg_value[2]:'';

$lobj = pq($document)->find($reg_value[0]);

$i = 0;

foreach ($lobj as $item) {

switch ($reg_value[1]) {

case 'text':

$this->data[$i][$key] = $this->_allowTags(pq($item)->html(),$tags);

break;

case 'html':

$this->data[$i][$key] = $this->_stripTags(pq($item)->html(),$tags);

break;

default:

$this->data[$i][$key] = pq($item)->attr($reg_value[1]);

break;

}

if(isset($reg_value[3])){

$this->data[$i][$key] = call_user_func($reg_value[3],$this->data[$i][$key],$key);

}else if(isset($this->regArr['callback'])){

$this->data[$i][$key] = call_user_func($this->regArr['callback'],$this->data[$i][$key],$key);

}

$i++;

}

}

}

if ($this->outputEncoding) {

//编码转换

$this->data = $this->_arrayConvertEncoding($this->data, $this->outputEncoding, $this->htmlEncoding);

}

phpQuery::$documents = array();

}

/**

* 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);

curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36');

$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('/

.+/is','',$html);

}

/**

* 获取文件编码

* @param $string

* @return string

*/

private function _getEncode($string)

{

return mb_detect_encoding($string, array('ASCII', 'GB2312', 'GBK', 'UTF-8'));

}

/**

* 转换数组值的编码格式

* @param array $arr

* @param string $toEncoding

* @param string $fromEncoding

* @return array

*/

private function _arrayConvertEncoding($arr, $toEncoding, $fromEncoding)

{

eval('$arr = '.iconv($fromEncoding, $toEncoding.'//IGNORE', var_export($arr,TRUE)).';');

return $arr;

}

/**

* 简单的判断一下参数是否为一个URL链接

* @param string $str

* @return boolean

*/

private function _isURL($str)

{

if (preg_match('/^http(s)?:\\/\\/.+/', $str)) {

return true;

}

return false;

}

/**

* 去除特定的html标签

* @param string $html

* @param string $tags_str 多个标签名之间用空格隔开

* @return string

*/

private function _stripTags($html,$tags_str)

{

$tagsArr = $this->_tag($tags_str);

$html = $this->_removeTags($html,$tagsArr[1]);

$p = array();

foreach ($tagsArr[0] as $tag) {

$p[]="/(]*>)/i";

}

$html = preg_replace($p,"",trim($html));

return $html;

}

/**

* 保留特定的html标签

* @param string $html

* @param string $tags_str 多个标签名之间用空格隔开

* @return string

*/

private function _allowTags($html,$tags_str)

{

$tagsArr = $this->_tag($tags_str);

$html = $this->_removeTags($html,$tagsArr[1]);

$allow = '';

foreach ($tagsArr[0] as $tag) {

$allow .= " ";

}

return strip_tags(trim($html),$allow);

}

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;

}

/**

* 移除特定的html标签

* @param string $html

* @param array $tags 标签数组

* @return string

*/

private function _removeTags($html,$tags)

{

$tag_str = '';

if(count($tags))

{

foreach ($tags as $tag) {

$tag_str .= $tag_str?','.$tag:$tag;

}

phpQuery::$defaultCharset = $this->inputEncoding?$this->inputEncoding:$this->htmlEncoding;

$doc = phpQuery::newDocumentHTML($html);

pq($doc)->find($tag_str)->remove();

$html = pq($doc)->htmlOuter();

$doc->unloadDocument();

}

return $html;

}

/**

* 打印日志

* @param string $message

* @param string $level

*/

private function _log($message = '',$level = 'info')

{

if(!is_null(self::$logger))

{

$url = $this->_isURL($this->page)?$this->page:'[html]';

$count = count($this->data);

$level = empty($level)?($count?'info':'warning'):$level;

$message = empty($message)?($count?'Get data successfully':'Get data failed'):$message;

self::$logger->$level($message,array(

'page' => $url,

'count' => $count

));

}

}

}

/*

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;

}

}

spl_autoload_register(array('Autoload','load'));

*/

php queryList函数,QueryList/QueryList.php at master · baijunyao/QueryList · GitHub相关推荐

  1. querylist.php下载,PHP 强大的采集工具,QueryList

    # QueryList简介 *** `QueryList`是一个基于`phpQuery`的通用列表采集类,是一个简单. 灵活.强大的采集工具,采集任何复杂的页面     基本上就一句话就能搞定了. # ...

  2. QueryList 配置curl参数 的文档位置 QueryList抓取https 终于找到了

    需要设置ssl证书,或者不验证证书,例:$ql = QueryList::get('https://...',[],['verify' => false]); 设置这个 'verify' =&g ...

  3. python装饰器带参数函数二阶导数公式_MVision/caffe_简介_使用.md at master · Ewenwan/MVision · GitHub...

    2. caffe 模型配置文件 prototxt 详解 每个模型由多个 层 构成 layer {{{{ name: "{}" #层名字,可随意取名 type: "{}&q ...

  4. 使用代理爬去微信公众号_Python3WebSpider/9.5-使用代理爬取微信公众号文章.md at master · Lainton/Python3WebSpider · GitHub...

    9.5 使用代理爬取微信公众号文章 前面讲解了代理池的维护和付费代理的相关使用方法,接下来我们进行一下实战演练,利用代理来爬取微信公众号的文章. 1. 本节目标 我们的主要目标是利用代理爬取微信公众号 ...

  5. linux内核漏洞分类,blog/linux kernel double-free类型漏洞的利用.md at master · snorez/blog · GitHub...

    对linux kernel double-free类型漏洞的较通用利用方法 update Wed Nov 29 16:39:01 HKT 2017 linux kernel 4.14 released ...

  6. tools。php,phpTools/tools.php at master · superve/phpTools · GitHub

    ######### 数值操作扩展 ######### /** *检测两个实数区间是否相交 * *@date 2014/12/11 15:20 *@scenario 碰撞检测; 业务要求能够自定义分时间 ...

  7. python中类型错误、计数不采用关键字的错误怎么改_Learning/Python-面试问题.md at master · yxxyyx1314/Learning · GitHub...

    Python-面试问题 参考链接 面:Python 中什么元素为假? 答:(0,空字符串,空列表.空字典.空元组.None, False) 面:Python 中查看某个关键字的属性? 答:dir ( ...

  8. python地理数据处理 下载_python-doc/将Python用于地理空间数据处理.md at master · zhuxinyizhizun/python-doc · GitHub...

    毫无疑问,Python是当今最流行,最通用的编程语言之一.这有很多种强有力的原因,但在我看来,最重要的是:开源定义,语法简单,包括电池的理念(batteries included philosophy ...

  9. java j集合_JNotes/Java-集合篇(2)集合之List.md at master · harryjudy2240/JNotes · GitHub...

    ArrayList 存储机制 基于动态数组实现,默认长度 10 :因为数组特性,其读取速度快,增删效率慢 因为写入或读取都是通过数组索引直接操作,所以,允许为 null 值, 且可以重复 当数组大小不 ...

最新文章

  1. mysql高可用之MMM
  2. JavaEE Web开发之Servlet篇
  3. AI CC2019软件安装教程
  4. windows 技术篇 - uispy 工具获取和使用,windows窗口属性快捷查看工具
  5. 经典C语言程序100例之五六
  6. python子类初始化父类_Python实现子类调用父类的初始化实例
  7. 史上最气人的数学家:文理双全智商还高,说话只说半句,解题只解半个,调戏人调戏了三百年还不够......
  8. Leetcode--1019. 链表中的下一个更大节点(java)
  9. fluke196c系统语言,原装二手福禄克Fluke196C 电工仪表
  10. 大页内存的使用:大页内存分配与释放
  11. 程序员合同日期不到想辞职_辞职报告怎么写最简单?写清楚理由和时间,签上姓名就OK了...
  12. 快手面试官:Redis变慢了,如何快速排查?
  13. rocketmq云服务搭建踩坑
  14. 免费wms物流管理存在的管理漏洞(下)
  15. 50个地理人必备数据库赶紧收藏起来(含气候、地信、地质、卫星遥感、城市经济等)
  16. 从0到1设计通用数据大屏搭建平台
  17. api与密度转换公式_原油API度与比重换算表摄氏15
  18. 道德经和译文_老子《道德经》全文解析及通俗译文
  19. 软件开发培训学校四大培训标准,引领行业标杆
  20. 查询主机序列号/基本信息

热门文章

  1. android4.0 SystemUi系统状态栏
  2. STM32硬件错误(HardFault_Handler)位置判断
  3. C++强制类型转换:static_cast、dynamic_cast、const_cast、reinterpret_cast
  4. java-信息安全(十)-数字签名算法DSA
  5. Linux基础--虚拟机的控制及linux系统的基本操作
  6. 模式 - 收藏集 - 掘金
  7. jQuery和AngularJS的区别小分析
  8. linux获取随机数的方法集合
  9. 堆垛管理,下料管理系统
  10. 利用运行时设置UITextField 光标颜色