3
votes
6answers
1k views
Does Perl have PHP-like dynamic variables?
Hello,
In PHP, I can write:
$vname = 'phone';
$$vname = '555-1234';
print $phone;
... And the script will output "555-1234".
Is there any equivalen …
