php采集(phpOuery用法)

一、下面简单举例:

 <?php 

include 'phpQuery.php';//导入phpQuery类

phpQuery::newDocumentFile('http://www.phper.org.cn');

echo pq("title")->text;//获取网页标题

echo pq("div#header")->html();//获取id为header的div的html内容

echo pq("td.tit")->html//获取class为tit的td的html内容


$artlist = pq(".news_list");

foreach($artlist as $ul){

$arr[] = pq($ul)->html();

}

print_r($arr);


$string = pq(".news_list");

foreach($string as $a){

  echo pq($a)->find('a')->attr('href')."<br/>";//获取a标签的href的属性值

}

?>


二、载入文档(loading documents)

加载文档主要通过phpQuery::newDocument来进行操作,其作用是使得phpQuery可以在服务器预先读取到指定的文件或文本内容。

主要的方法包括:

phpQuery::newDocument($html,$contentType=null)

phpQuery::newDocumentFile($file,$contentType=null)

phpQuery::newDocumentHTML($html,$charset='utf-8')

phpQuery::newDocumentXHTML($html,$charset='utf-8')

phpQuery::newDocumentXML($html,$charset='utf-8')

phpQuery::newDocumentPHP($html,$contentType='null')

phpQuery::newDocumentFileHTML($file,$charset='utf-8')

phpQuery::newDocumentFileXHTML($file,$charset='utf-8')

phpQuery::newDocumentFileXML($file,$charset='utf-8')

phpQuery::newDocumentFilePHP($file,$contentType)


三、pq()函数用法

pq()函数用法是phpQuery的重点,主要分两个部分:选择器和过滤器

【选择器】

要了解phpQuery选择器的用法,建议先了解jQuery的语法

最常用的语法包括有:

pq('#id'):即以#号开头的ID选择器,用于选择器已知ID的容器所包括的内容

pd('.classname'):即以.开头的class选择器,用于选择class匹配的容器内容

pq('parent>child'):选择指定层次结构的容器内容,如:pq('.main>p')用于选择class=main容器下的所有p标签

更多的语法请参照jQuery手册

【过滤器】

主要包括::first,:last,:not,:even,:add,:eq(index),:gt(index),:lt(index),:header,:animated等,如:

pq('p:last'):用于选择最后一个P标签

pq('tr:even'):用于选择表格中偶数行


四、phpQuery连贯操作

pd()函数返回的结果是一个phpQuery对象,可以对返回结果继续进行后续的操作,例如:

pd('a')->attr('href','newVal')->removeClass('className')->html('newHtml')->...

详情查阅jQuery相关资料,用法基本一致,只需要注意与->的区别即可。










  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值