织梦正则批量替换文章内容内链变成绝对路径

织梦文章内链绝对路径的跳过,相对路径的替换   替换之前   <p><strong><a href="/html/1.html">HTML</a>文档是由<a href="http://www.zuola.net/html/2.html">HTML</a>元素构成的文本文件。</strong></p>   <p><strong><a href='/html/3.html'>HTML</a>元素是通过使用<a href="http://zuola.net/html/4.html">HTML</a>标签进行定义的。</strong></p>   替换之后   <p><strong><a href="http://www.zuola.net/html/1.html">HTML</a>文档是由<a href="http://www.zuola.net/html/2.html">HTML</a>元素构成的文本文件。</strong></p>   <p><strong><a href='http://www.zuola.net/html/3.html'>HTML</a>元素是通过使用<a href="http://zuola.net/4.html">HTML</a>标签进行定义的。</strong></p>   内容模板文章内容标签   {dede:field.body/}     改成

{dede:field.body runphp=yes}

$str = @me;

$content = preg_replace('/(?<=href=['"])//', 'https://www.zuola.net/', $str);

@me = $content;

{/dede:field.body}