我有一個示例代碼:在php中使用str_replace時出錯?
$text = "abc ABC def ghi Abc aBc xyz";
$search = "abc"
$string = str_replace(" ".trim($search)." ", 'DEF', $text);
echo $string;
而且結果是: 「abc ABC def ghi DEF aBc xyz
」 //只有美國廣播公司改變
但究竟結果是: 「abc DEF def ghi DEF DEF xyz
」
如何解決呢?