I want to replace many different things with many other different things in a forum post. I have an Array with all things to be replaced:
$stuff = array("word", "sentence", "cat");
Actually i want to take the string to be replaced to create the string in which to change, so i need a backreference. With preg_replace i can use $1, but this isnt possible in str_replace. So what can i use instead of an backreference? I cannot use preg_replace because that are static Strings and i cannot match it with regex.
Thank you!