我有这个作为示例文本
......
$text = "Swiss Real";
......
现在我做的是这个
$text = str_ireplace('swiss','<font color="red">swiss</font>',$text);
现在我的字符串是
$text is '<font color="red">swiss</font> Real'
现在我想做
$text = str_ireplace('re','<font color="red">re</font>',$text);
现在这是我的问题......我只想改变'Real'而不是'color =“red”'中的re
我如何实现它。
请帮我。