我想将字符串“T Shirts Vests”改为“TShirts背心”。我试过这个:
$item['menu_3'] = str_ireplace("T Shirts Vests", "TShirts", $item['menu_3']);
但str_ireplace
似乎无法解决这个问题。我该怎么做?
答案 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, " ")] = '';