码迷,mamicode.com
首页 > Web开发 > 详细

PHP QueryList采集器

时间:2021-04-23 12:26:15      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:文件   get   text   htm   nts   http   cep   采集   cti   

百度下载QueryList类库文件

/**
  * 抓取数据源
  * @param $rules    array    抓取规则
  * @param $url      string   url
  * @return mixed
  */
function getQueryList($rules, $url)
{
    $html = file_get_contents($url);
    $QL = new \QL\QueryList();
    return $QL::Query($html, $rules)->data;
}

//创建QL文件夹,引入phpQuery.php和QueryList.php
//在QueryList.php中添加
use phpQuery,Exception,ReflectionClass;
require "phpQuery.php";

//使用
require_once("./QL/QueryList.php");
$rules = [
    ‘ztgk‘ => [‘.p1 + span‘, ‘text‘],
    ‘ztgk_a‘ => [‘.p1 + span>small‘, ‘text‘],
    ‘jkzs‘ => [‘.c_main ul>li:eq(4)‘, ‘text‘],
    ‘jkzs_a‘ => [‘.c_main ul>li:eq(4)>label‘, ‘text‘],
    ‘xyys‘ => [‘.c_main ul>li:eq(6)‘, ‘text‘],
    ‘xyys_a‘ => [‘.c_main ul>li:eq(6)>label‘, ‘text‘],
    ‘xysz‘ => [‘.c_main ul>li:eq(7)‘, ‘text‘],
    ‘xysz_a‘ => [‘.c_main ul>li:eq(7)>label‘, ‘text‘],
];
$url1 = "http://www.xzw.com/fortune/$url";
$data[‘jintian‘] = $comm->getQueryList($rules, $url1);

PHP QueryList采集器

标签:文件   get   text   htm   nts   http   cep   采集   cti   

原文地址:https://www.cnblogs.com/ljkltt/p/14692605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!