I would like to remove all back slashes from strings on my site. I do not wish to use strip_slashes(), because I want to keep forward slashes.
This is the code I am trying:
echo str_replace("\", "", "it\'s Tuesday!");
I want to find the backslash in any given string and remove it. But, this code is not working right.
Error:
syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
What could I be doing wrong?
The backslash is actually escaping the closing quote in your string.
Try echo str_replace("\\","","it\'s Tuesday!");
Try and get the result:
$str = "it\'s Tuesday!";
$remove_slash = stripslashes($str);
print_r($remove_slash);
Output: it's Tuesday!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With