replace backslash in str_replace

385 Views Asked by At

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.

1

There are 1 best solutions below

0
On

I have no idea why you'd want to do this, but I think the following should work:

$text = str_replace('\'', "\\\\\\'", $text);