VAN0 Posted May 31, 2014 Share 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. Link to comment Share on other sites More sharing options...
Solution czardas Posted May 31, 2014 Solution Share Posted May 31, 2014 Look in the help file for Eval() and Assign(). VAN0 1 operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
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