替换字符串的单词mantain小写和原始字符串的大写字符

时间:2011-02-17 11:38:29

标签: php

我有,例如,这个字符串$string='Hello World, hello world'; 我有一个小写或大写的参数,我需要替换<stong>word</strong>

的所有相等的单词

如果我试试这个: $newstring=str_ireplace('world','<strong>world<s/trong>',$string);

结果是 Hello world,hello world (第一个单词中的小写w)是不可替代的字符串mantain lowercases和原始字符串的upercases?

谢谢,抱歉我的英文

1 个答案:

答案 0 :(得分:4)

使用preg_replace即可轻松完成。

$string = preg_replace('/world/i', '<strong>$0</strong>', $string);