$string = str_replace('search','replace',$string);
<?php $string = str_ireplace("FoX", "CAT", "the quick brown fox jumps over the lazy dog"); echo $string; // the quick brown CAT jumps over the lazy dog ?>