Quote:
Originally Posted by _Z3phyr_
So if I'm going to start the variable's name with the value of another variable, I need to use the @ sign to start it off?
this.(@ varname) = value;
|
I think you only
need it for a variable name only or if a variable name is first.
PHP Code:
this.(@ foo @ "bar") = baz;
However, I do it out of habit even when a string is first. It is probably good practice for consistency and legibility.