当前位置: 代码迷 >> PHP >> preg_replace替换a标签解决思路
  详细解决方案

preg_replace替换a标签解决思路

热度:72   发布时间:2016-04-29 00:55:05.0
preg_replace替换a标签
<a href="http://" style="line-height:27px;color:#444547;margin-right:12px;display:none">更多</a>
怎么写正则,要求a标签样式里出现display:none就把a标签替换成空

------解决方案--------------------
PHP code
$s = <<< TXT<a href="http://" style="line-height:27px;color:#444547;margin-right:12px;display:lock">更多</a><a href="http://" style="line-height:27px;color:#444547;margin-right:12px;display:none">更多</a><a href="http://" style="line-height:27px;color:#444547;margin-right:12px;">更多</a>TXT;echo preg_replace('/<a[^>]*(?=display:none).+?<\/a>/is','',$s);