下载phpquery包

 require('phpQuery/phpQuery.php');//加载
for($i=1168;$i<=10000;$i++){
phpQuery::newDocumentFile('http://bj.esf.sina.com.cn/house/n'.$i.'/');//读取 $artlist = pq(".house-title"); //获取
foreach($artlist as $li){
$href=pq($li)->find('a')->attr('href');//写法1
echo $href."<br/>";
$str = pq(".panelB > table > tr > td")->html();//写法2
}
phpQuery::$documents = array();//清空缓存的视图
}
05-11 13:04