Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: using variables in late contexts?

by jreades (Friar)
on Nov 26, 2002 at 22:34 UTC ( [id://215953]=note: print w/replies, xml ) Need Help??


in reply to using variables in late contexts?

Let me see that I have this straight.

You want your code to 'look' like:

-varbindlist => [$myvariable]

Where the input would be:

-varbindlist => [${$some_variable}]

And the input $some_variable would be derived from a value in %cmd_table.

In that case, I think that the answer is simply:

my @RESULTS = (); my $test; foreach $test (@test_array) { my $temp = $session->getrequest( -varbindlist => [${$cmd_table{$test}}] ); unless (defined $temp) { print("Error in session: %s", $cmd_table{$test}); push @RESULTS, "error"; } else { push @results, $temp; } }

Reformat for personal style.

Also note that this will probably cause some issues if you use strict since you're interpolating variable names which could result in various security issues.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-19 19:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found