php解析html页面的类库之一,和jquery非常类似,用于采集html页面和解析node节点。phpQuery的功能比simple_html_dom强大,使用方式上更接近于jquery,查看其源码可以知道其所支持的属性和方法。 phpQuery存在单文件版本和多文件版本,一般使用单文件足以。使用方法如下: include 'phpQuery-onefile.php'; //面向对象方式2种读取方式 phpQuery::newDocumentFile('http://www.baidu.com'); $contents = get_html_contents($main_url); phpQ