<?php $str = "lorem ipsum doler sit amet. Amet ipsum doleram paradem"; $find = "lorem|ipsum"; $replstr = "{" . str_replace("|", "}|{", $find) ."}"; $find = explode('|', $find); $replace = explode("|", $replstr); $newString = str_replace($find, $replace, $str); Echo $newString;
You have javascript disabled. You will not be able to edit any code.