这是从 html dom 获取的文本:
"Established in <b>2004</b>, <strong>AssistanZ</strong> has become one of the most"
我需要将上面的字符串替换为"Established in 2004, AssistanZ has become one of the most"
.
由于 html 元素,字符串比较不起作用。我无法替换 html,因为它会动态出现。
你能告诉任何人如何解决这个问题。提前致谢。
$oldValue = $value->skey;
$newValue = $value->svalue;
str_replace($oldValue,$newValue,$text);