Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Scalar variable value is name of a scalar variable

by dsheroh (Monsignor)
on Jul 01, 2009 at 09:00 UTC ( #776358=note: print w/replies, xml ) Need Help??


in reply to Scalar variable value is name of a scalar variable

Is '$INFO' equivalent to $INFO?

No. '$INFO' is a string containing a dollar sign followed by the letters I, N, F, and O. It is a constant. $INFO is a variable named $INFO whose value can be just about anything (although, given the context, I expect it's probably an integer).

While it is possible to do something like what you're talking about with soft references, that's bad ju-ju, so don't do it unless you enjoy ripping your hair out as you try to figure out how a variable which doesn't even appear in your code is getting modified.

The better approach in this case would be to simply remove the quotes from your assignments. e.g., Use $loglev = $DEBUG; instead of $loglev = '$DEBUG'; (There are other, even better, options which don't involve if/elsif/elsif/... chains, but this one is the quickest and simplest to implement, given your posted code as a starting point.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://776358]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2023-12-06 21:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your preferred 'use VERSION' for new CPAN modules in 2023?











    Results (32 votes). Check out past polls.

    Notices?