Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to find \ in a string.

Example

$replacevalue = "%20";
$area = "test\abc.htm";
$valuetoreplace = "\";
$area = str_replace($valuetoreplace,$replacevalue, $area );

But it seems like the page goes into a loop or somthing if i do the same with / there are no problem please help

share|improve this question
1  
add slashes to your $valuetoreplace – Eugene Manuilov Jan 28 at 7:30
1  
The page should have died with a fatal "Parse error". – Salman A Jan 28 at 8:55

closed as too localized by Salman A, tereško, Jack, Till Helge, Jocelyn Mar 12 at 11:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

6 Answers

try this:

$replacevalue           =   "%20";
$area               =   "test\abc.htm";

$valuetoreplace     =   "\\";
$area               =   str_replace($valuetoreplace,$replacevalue, $area );

or another solution is in this post

share|improve this answer

You need to double your \s as it is an escape character for strings... So:

% php
<?php
$area = str_replace("\\","",'test\abc.htm');
echo $area."\n";
?>

Yields... testabc.htm

share|improve this answer

valuetoreplace should be "\\".

share|improve this answer

Well "\" this character is an escape character so compiler refers to it as an escape not as a "\", just add another one so it will escape itself "\" and your code will work

share|improve this answer

Change the line:

$valuetoreplace     =   "\";

to

$valuetoreplace     =   "\\";

Read more about escaping characters.

share|improve this answer

'\' is a special character add a double \\ to escape it

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.