Variable Variables in UI.Vision?

i have a question for you, can you help me pls?
can i do Variable Variables in ui.vision?
example… i explain it in the php programming language, seem like this:
$real_variable = ‘test’;
$name = ‘real_variable’;
$name_of_name = ‘name’;

echo $name_of_name . ‘
’;
echo $$name_of_name . ‘
’;
echo $$$name_of_name . ‘
’;

the output will be like this:
name
real_variable
test
could ui.vision be like that? how can i use that function in ui.vision?

Duplicate of Variable Variables $$$