PHP正则获取指定标签中的内容

$str = file_get_contents('./zhiwei.html');
//利用正则表达式获取里面的数据
//获取大分类
$regex4 = "/.*?<\/aa>/ism";
    	if(!preg_match_all($regex4, $str, $matches)){  
   echo '获取大分类出错';  
}
//继续正则获取内容
$regex4 = "/(?<=\>)[^<>]*(?=\<\/)/ism";
if(!preg_match_all($regex4, $matches[0][0], $matches)){  
   echo '获取大分类内容出错';  
}
//根据 $matches 来获取自己需要的数据

你可能感兴趣的:(正则获取标签的html内容)