求正则表达式完成这个需求,该如何解决
程序员文章站
2022-06-13 12:26:08
...
求正则表达式完成这个需求
找到文章中这样的图片,替换成
如何写正则表达式,然后如何处理呢
------解决方案--------------------
找到文章中这样的图片,替换成
如何写正则表达式,然后如何处理呢
------解决方案--------------------
$html =
html;
$regImg = preg_match_all('//', $html, $matches) ;
$newSrc = $matches[1][0].'!static"'." _src=\"".$matches[1][0]."!static\" tsrc=\"".$matches[1][0];
$html = str_replace($matches[1][0], $newSrc, $html);
var_dump($html);
相关文章
相关视频
上一篇: 【每天学点管理】—有效决策的五个要素