str_replace
ABSTRACT
Replaces substrings of a string with the target
PARAMETERS
str | the original string |
substr | the substr that we want to replace |
with | the string that replaces the substr |
RETURN
a string where all of the substrings have been adjusted
DECLARATION
func str_replace(str, substr, with)