我有这个 html 文本:
<strong><em>La congiura della pietra nera</em></strong>
<p><a href="xxxxx">
<img class="alignleft size-medium wp-image-75372" title="mytitle"
src="my.jpg" alt="" width="247" height="350"></a>
<strong>Trama:</strong> La storia ruota attorno ad una setta di guerrieri depositaria dei più arcani segreti.</p>
我需要用 prey_replace 替换一些单词,我在 php 中使用这个正则表达式:
$mycontent = preg_replace('{'.$words.'(?![^<>]*>)}i','otherwords',$mycontent);
它工作得很好,但我也需要排除标签内的文本,我该怎么做?
非常感谢