php preg_replace 正则替换 10
这是获取到的内容<ahref="变量"target="_blank"><imgstyle="padding-bottom:变量px;width:变量px;height:变...
这是获取到的内容
<a href="变量" target="_blank"><img style="padding- bottom:变量px;width:变量px;height:变量px;" src="变量"/></a>
然后怎么用preg_replace把它过滤掉?
这是原本
<a href="地址" target="_blank"><img style="padding- bottom:数值px;width:数值px;height:数值px;" src="地址"/></a>
用preg_replace和str_replace都是怎么替换的?替换为空或者屏蔽掉 展开
<a href="变量" target="_blank"><img style="padding- bottom:变量px;width:变量px;height:变量px;" src="变量"/></a>
然后怎么用preg_replace把它过滤掉?
这是原本
<a href="地址" target="_blank"><img style="padding- bottom:数值px;width:数值px;height:数值px;" src="地址"/></a>
用preg_replace和str_replace都是怎么替换的?替换为空或者屏蔽掉 展开
1个回答
展开全部
<?php
$str = 'sdfsdf<a href="地址" target="_blank"><img style="padding- bottom:数值px;width:数值px;height:数值px;" src="地址"/></a><img />';
$str = preg_replace('/<a href=\"[^\"]+\"\s+target="_blank"><img\s+style="padding\s*-\s*bottom:[^\"]+px;\s*width:[^\"]+px;\s*height:[^\"]+px;"\s*src="[^\"]+"\/><\/a>/i','',$str);
echo $str;
?>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询