要在使用 PHP 中的 str_replace()
函數時忽略大小寫,可以使用 str_ireplace()
函數。str_ireplace()
函數與 str_replace()
函數類似,只是它在執行替換時不區分大小寫。
例如,要在字符串中替換所有的 apple
不區分大小寫,可以使用以下代碼:
$str = "I like eating apples.";
$new_str = str_ireplace("apples", "bananas", $str);
echo $new_str;
在上面的例子中,無論字符串中的 apples
是大寫、小寫還是混合大小寫,都會被替換為 bananas
。