preg_replace(), removing string containing '+' char
- by Mikey1980
I am having an issue removing "%3Cbr+%2F%3E" from my string using the preg_replace function. My assumption is that the '+' char is being interpreted incorrectly. Here my code:
$address = preg_replace('/%3Cbr+%2F%3E/', '', urlencode($address));
Thanks as always!