I have the following string:
$text = 'Some slash\'s';
Here is my string replacement:
$text = str_replace('\'','\\\'',$text);
What I want to end up with is:
$text = 'Some slash\\\'s';
I think Im doing something wrong.
I have the following string:
$text = 'Some slash\'s';
Here is my string replacement:
$text = str_replace('\'','\\\'',$text);
What I want to end up with is:
$text = 'Some slash\\\'s';
I think Im doing something wrong.
Copyright © 2021 Jogjafile Inc.
I have no idea why you'd want to do this, but I think the following should work: