Is there a way to do a replace that's not dependant upon the case?
ie: str_replace('dOg', 'frog', 'dog is cool');
Printable View
Is there a way to do a replace that's not dependant upon the case?
ie: str_replace('dOg', 'frog', 'dog is cool');
preg_replace("/\dOg/isu",$string...
:o I didn't even think of that.
Thanks! :D