看糗百简单PHP版
程序员文章站
2022-05-23 17:18:38
...
糗百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>'; }