vote up 3 vote down star
1

Hello,

In PHP, I can write:

$vname = 'phone';
$$vname = '555-1234';
print $phone;

... And the script will output "555-1234".

Is there any equivalent in Perl?

Edit: Thanks, CMS.

Is there any way to constrain $phone to the scope of the local block, as if I'd written "my $phone"? Using "my $$vname" gives me "Can't declare scalar dereference in my at ..." errors.

flag

I put this in CMS's answer because I didn't see this edit, but it should be "$$vname = '555-1234'", remove the "my". – gpojd Nov 12 '08 at 1:15
This is deprecated code even in PHP. As others have posted, use a hash. – staticsan Nov 12 '08 at 3:05
That feature was copied from Perl, when PHP was written in Perl. – Brad Gilbert Nov 13 '08 at 0:35

6 Answers

vote up 1 vote down check

You can do it in a very similar way:

$vname = "phone";
$$vname = "555-1234";
print $phone;

Edit: But that you can doesn't means that you should, the best way to manage this is as Michael says, USE HASH!

link|flag
Why did I never know you could do that in Perl? – Greg Hewgill Nov 12 '08 at 1:01
Ta. Is there any way to constrain $phone to the scope of the local block, as if I'd written "my $phone"? Using "my $$vname" gives me "Can't declare scalar dereference in my at ..." errors. – Rob Howard Nov 12 '08 at 1:07
This gives me the following error: "Global symbol "$phone" requires explicit package name at temp.pl line 6." – Svante Nov 12 '08 at 1:11
Rob Howard - don't use "my" for $$vname Harleqin - turn off the strict pragma, it won't work with it enabled – gpojd Nov 12 '08 at 1:14
2  
If I have to turn off "strict" the construct is broken. – Svante Nov 12 '08 at 1:58
show 3 more comments
vote up 39 vote down

What you're attempting to do is called a "symbolic reference." While you can do this in Perl you shouldn't. Symbolic references only work with global variables -- not lexical (my) ones. There is no way to restrict their scope. Symbolic references are dangerous. For that reason they don't work under the strict pragma.

In general, whenever you think you need symbolic references you should use a hash instead:

my %hash;
$hash{phone} = '555-1234';
print $hash{phone};

There are a few cases where symrefs are useful and even necessary. For example, Perl's export mechanism uses them. These are advanced topics. By the time you're ready for them you won't need to ask how. ;-)

link|flag
vote up 10 vote down

Read Mark-Jason Dominus's rants against doing this: http://www.plover.com/perl/varvarname.html

You would limit the scope of your changes to $phone by starting the block with

local $phone;

or even

local $$vname;

(though that changes $phone for any subs called from your block too, so it's not the same as the lexical scope of a my() declaration.)

link|flag
1  
I'd never contemplated using C<local> to limit the scope of a symref. That's both interesting and perverse. It's like saying you're willing to shoot yourself in the foot but only with a BB gun. – Michael Carman Nov 12 '08 at 14:14
vote up 4 vote down

You can't do this with the strict pragma enabled, and the strict pragma should usually always be enabled. You can do it with the pragma off though, take a look at this one liner:

perl -le 'my $vname = "phone"; ${ $vname } = "555-1234"; print $phone'

That will work, but this will not:

perl -Mstrict -le 'my $vname = "phone"; ${ $vname } = "555-1234"; print $phone'

"-Mstrict" tells it to "use strict".

It is almost always better to use a hash for something like this, which is about the same as an associative array in PHP.

link|flag
vote up 0 vote down

You do realize that PHP inherits many of it's features from Perl, right?

Not only can Perl do all of the symbolic reference stuff PHP can.

use strict;
use warnings;
use 5.010;

our $test=1;

# access $test through the special hash %::
say ${$::{test}}++;

# this is essentially what the previous line did.
say ${\$test}++

# same as $test
say ${test}++;

{
  # PHP's simple symbolic ref
  my $ref = "test";
  no strict 'refs';
  say $$ref++;
  say ${"test"}++;
}
{
  package d;
  say ${$main::{test}}++;

  my $ref = $main::{"test"};
  say $$ref++;

  $ref = \$main::test;
  say $$ref++;
}
link|flag
vote up -2 vote down

The most direct way to do that might be to use eval:

$vname = 'phone';
eval("\$$vname = '555-1234'");
print $phone;

However, I would discourage the use of eval for this and there are probably better ways to solve your general problem. Have a look at the use of references in Perl.

Update: CMS has the right answer. I looked up why this works in Perl, and it's due to the Symbolic references feature. Note that if you use strict; in Perl, which I always do, then symbolic references are not permitted.

link|flag
The most direct way to do it is to wrap it in a block with "no strict 'refs'", but Don't Do That. – Michael Carman Nov 12 '08 at 2:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.