|
Posted by jodleren on 01/10/08 08:19
Hi all
I have text area, where I can edit files - but I have to correct the
returned data, for that I use
$content=str_replace('\"', '"', $content);
and
$content=str_replace('\\', '\', $content);
by some reason the latter one causes an error: syntax error,
unexpected T_VARIABLE in....
Replacing :-) it by
$content=str_replace("\\\\", "\\", $content);
and it works
what is wrong with '\\' ?
WBR
Sonnich
[Back to original message]
|