queryList实现分页参数接受的采集
Posted stillstep
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了queryList实现分页参数接受的采集相关的知识,希望对你有一定的参考价值。
$pn = $_GET[‘pn‘];
<?php
require ‘QueryList.class.php‘;
header(‘Content-type:text/html;charset=utf-8‘);
// 博客园支持分页,通过chrome找到此分页方法
$url = ‘http://www.cnblogs.com/sitehome/p/‘;
$pn = $_GET[‘pn‘];
$url = $url.$pn;
$reg = array(‘img_url‘=>array(‘img‘,‘src‘),
‘title‘=>array(‘.titlelnk‘,‘text‘),
‘content‘=>array(‘.post_item_summary‘,‘text‘),
‘content_url‘=>array(‘.titlelnk‘,‘href‘));
$rang = ‘.post_item‘;
$hj = QueryList::Query($url,$reg,$rang,‘curl‘);
echo $hj->getJSON();
?>
以上是关于queryList实现分页参数接受的采集的主要内容,如果未能解决你的问题,请参考以下文章