PHP正则表达式如何提取HTML标签属性值?
php使用正则表达式提取html标签属性
您正在编写一个php函数用于过滤html,提取提取常用属性,如style、class、href、target和alt。为了实现预期效果,需要对原提供的代码进行修改。
使用正则表达式来提取所需的属性值,以下为修正后的代码块:
$re = '/onw+=(['"]).*?/m';$str = '<strong style="white-space: normal;" class="123" onload="asdasdas()"> </strong><div class="ccc">aaaaa</div><p style="white-space: normal;">bbbbb</p><strong class="123" style="white-space: normal;" onload="asdasdas()">12313123 </strong><strong onload='asdasdas()'>eeeeee </strong><a href="http://www.xxx.com" target="_blank" class="aaaa">链接链接</a><p>ffff</p>';$subst = '';$result = preg_replace($re, $subst, $str);echo "替换的结果是 ".$result;