in reply to Re^2: CGI::Session cannot read data from Data::Dumper
in thread CGI::Session cannot read data from Data::Dumper
If you don't mind, could you tell me what this returns?
use Safe; use Devel::Peek; my $x = bless \ do { my $a = 0 }, "x"; print Dump($x); my $y = Safe->new->reval('bless \\ do { my $a = 0 }, "x"'); print Dump($y); bless $y, ref $y; print Dump($y);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: CGI::Session cannot read data from Data::Dumper
by lom (Sexton) on Nov 02, 2007 at 08:32 UTC |