webCOMAND

#REF

Get the value of a variable with the name passed in as $variable.

Prototype

#REF($variable)

Parameters

  • variable - A string or variable set to the name of another variable.  The value of the other variable will be output.

Example

#ASSIGN($var_name, 'test')
#ECHO('$$test=' + $test)
#ECHO('$$test=' + #REF('test'))
#ECHO('$$test=' + #REF($var_name))