Hey everyone,

I have a simple question about perl's debugger. 
Perhpas I am missing something here, yet I am having a
hard time to dump an object's structure such as
"method, variable etc". 


For example, I have a simple code snap as folling;
======================
$cgi = new CGI::Base;        
        
$cgi->var($name);           # get CGI variable value
$cgi->var($name, $value);

===========================

At this point, I asked the debugger to dump "$cgi"
by doing "print $cgi".  Instead of dumpping the
structure, it only say:

 "CGI::Base=HASH(0x8294800)"


Am I missing anything here?.

In short, I want to dump out the structure of
CGI::Base
object such as method and the "variable" the perl put
in there including environment variable. 


Thanks


Mike

__________________________________
Do you Yahoo!?
Yahoo! Finance Tax Center - File online. File on time.
http://taxes.yahoo.com/filing.html

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to