simplehtmldomphp
php解析html页面的函数库之一,操作类似于原生js和jquery,主要用于采集html页面和解析node节点。simple_html_dom的常用操作: include 'simple_html_dom.php'; //面向过程方式2种读取方式 $html = file_get_html('http://www.baidu.com'); $html = str_get_html(file_get_contents('http://www.baidu.com')); //面向对象方式2种读取方式 $html = new simple_html_dom(); $html->load_file
用户评论