本文实例讲述了PHP正则+Snoopy抓取框架实现的抓取淘宝店信誉功能。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
header( "Content-Type:text/html;charset=gbk" );
include "Snoopy.class.php" ;
$snoopy = new Snoopy;
$snoopy ->fetch( "http://rate.taobao.com/user-rate-f01d9cb1245a22fcea470c11665de90e.htm?spm=0.0.0.37.TOtKhZ" );
$html = $snoopy ->results;
//echo $html;
//var_dump($html);
preg_match( '/<ul class=\"sep\">\s*<li>[\w\W]*align=\"absmiddle\" class=\"rank\" \/><\/a><\/li>/' , $html , $result );
//preg_match_all('/<div\sid=\"([a-z0-9_]+)\">([^<>]+)<\/div>/',$html,$result);
var_dump( $result );
echo "<br>" ;
|
PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:
正则表达式在线测试工具:
https://tool.zzvips.com/t/regex/
希望本文所述对大家PHP程序设计有所帮助。