String replace ignore case in PHP
is replace case sensitive php
//Will make sure to replace anything that matches
str_ireplace()
Replace the characters "WORLD" (case-insensitive) in the string "Hello world!" with "Peter":
<?php
echo str_ireplace("WORLD","Peter","Hello world!");
?>