我有一个html内容条目。我需要用('.',$string(进行分解。我需要用"。"排除html标记并使用strreplace插入新词,但输出包含html标记。输入:
$string = 'abc <a href="http://x.com">x.com</a> xyz.xxx <img src="y.com" /> zyx.yyy ';
输出必须:
abc <a href="http://x.com">x.(NEWWORD)com</a> xyz.(NEWWORD)xxx <img src="y.com" /> zyx.(NEWWORD)yyy
<?php
preg_match_all("//?(>s?.*?.)w+/i",$string, $result);
foreach($result[1] as $row)
{
$string = str_replace($row, $row."(NEWWORD)", $string);
}
echo $string;
//Good luck!