缺点:抓取不了异步数据,即js动态添加的数据,如天猫的商品价格
--使用
//引入simple_html_dom文件
include "simple_html_dom.php";
//要解析的网页地址
$htmlurl="地址";
--通过html内容,创建文档对象
//要解析的html以字符串的形式存在
$html = str_get_html('<html><body>Hello!</body></html>');
//要解析的html以URL的形式存在
$html = file_get_html('http://www.google.com/');
//要解析的html以文件的形式存在
$html = file_get_html('test.htm');