糗百PHP版
<?php require 'phpQuery/phpQuery.php'; phpQuery::newDocumentFile('http://hxyl.net/'); $art = pq('#content .entry'); foreach($art as $k=>$v){ print '标题:'.pq($v)->find('h2')->html().'<br>'; print '内容:'.pq($v)->find('p:eq(0)')->html().'<hr>'; }