|
Posted by Martn Marqus on 05/09/05 17:47
El Lun 09 May 2005 11:44, Marek Kilimajer escribió:
> Martín Marqués wrote:
> > I have a text variable that contains "$" symbols, that when I pass it out
PHP
> > thinks that the "$" mean that a variable name comes right after.
> >
> > I tried escaping the "$" put with no luck.
> >
> > Is there something I can do?
> >
>
> How did you escape the symbol? You should use backslash: \
Sorry, my misstake. :-(
I was doing:
srt_replace("$","\$",$string);
instead of:
srt_replace("$","\\$",$string);
Forgot to escape the escape caracter! :-D
--
11:45:49 up 37 days, 20:09, 2 users, load average: 1.37, 1.07, 1.06
-----------------------------------------------------------------
Martín Marqués | select 'mmarques' || '@' || 'unl.edu.ar'
Centro de Telematica | DBA, Programador, Administrador
Universidad Nacional
del Litoral
-----------------------------------------------------------------
[Back to original message]
|