What if we want to replace characters in a string with other characters?

Great, right? str_replace() takes 3 arguments: the value to replace, its replacement, and the string it's in.

Psst: notice that str_replace() is case-sensitive.

Didn't we abbreviate the word string in functions before?