I find print_r in PHP extremely useful, but wonder if there is anything remotely equivalent in Perl?
|
2
|
|||
|
|
|
A snippet of the examples shown in the above link.
|
||
|
|
|
I went looking for the same thing and found this lovely little Perl function, explicitly meant to generate results like print_r(). The author of the script was asking your exact question in a forum here.
Gives this output:
|
||
|
|
|
|
I use Data::Dump, it's output is a bit cleaner than Data::Dumper's (no $VAR1), it provides quick shortcuts and it also tries to DTRT, i.e. it will print to STDERR when called in void context and return the dump string when not. |
|||
|
|
|
|
An alternative to Data::Dumper that does not produce valid Perl code but instead a more skimmable format (same as the As well, there is Data::Dump::Streamer, which is more accurate in various edge and corner cases than Data::Dumper is. |
||
|
|
|
|
As usually with Perl, you might prefer alternative solutions to the venerable Data::Dumper:
And of course with the debugger, you can display any variable with the 'x' command. I particularly like the form ' |
||
|
|
