PHP替换字符串中的内容

时间:2012-02-08 22:15:43

标签: php replace

我想将字符串“T Shirts Vests”改为“TShirts背心”。我试过这个:

$item['menu_3'] = str_ireplace("T Shirts Vests", "TShirts", $item['menu_3']);

str_ireplace似乎无法解决这个问题。我该怎么做?

2 个答案:

答案 0 :(得分:6)

$item['menu_3'] = str_ireplace("T Shirts Vests","TShirts Vests", $item['menu_3']);

str_replace顺便说一下也能正常工作。

答案 1 :(得分:0)

$str = "T Shirts Vests";
$str[strpos($str, " ")] = '';