I am looking for best, easiest way to do something like:
$var1="value";
bunch of code.....
**print allVariablesAndTheirValuesCurrentlyDefined;**
|
I am looking for best, easiest way to do something like:
|
|||||||||||
|
|
Package variables? Lexical variables? Package variables can be looked up via the symbol table. Try Devel::Symdump:
Lexical variables are a little tricker, you won't find them in the symbol table. They can be looked up via the 'scratchpad' that belongs to the block of code they're defined in. Try PadWalker:
|
||||
|
|
|
The PadWalker module gives you
Here is an example:
|
||||
|
|
|
The global symbol table is |
|||||
|
|
Nathan's answer is part of the story -- unfortunately, the rest of the story is that lexical variables aren't listed in Lexical variables are what you would normally use for "ordinary local" variables. They are declared like:
|
|||||||||
|
|
Would this be for anything other than debugging purposes? If not, you may want to familiarize yourself with perl's debugger. Once inside the debugger you can inspect all variables by issuing 'V'. |
||||
|