Hi
i'd like to know how to get variables that begin with $ in a php script.
For example, if my script is:
<? echo $blabla ?>
I would like to know the regular expression that catches the string "$blabla" (and just "$blabla")
I tried with this pattern : $pattern = "\$"; but it doesn't work
Do you have any idea of ow to proceed?
Thanx 🙂