VAN0 Posted May 31, 2014 Posted May 31, 2014 Hello.Is there a way access a variable when it's name only available as a string?For example in PHP the format is: $$var$var1 = "original string"; echo $var1 /* OUTPUT: original string */ $var2 = "var1"; //variable name $$var2 = "new string"; echo $var1; /* OUTPUT: new string */Thanks.
Solution czardas Posted May 31, 2014 Solution Posted May 31, 2014 Look in the help file for Eval() and Assign(). VAN0 1 operator64 ArrayWorkshop
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now