in reply to RE: RE: undefs and functions
in thread undefs and functions
Results:my $foo = { }; $foo->{a}->{b}->{c}->{d} = 1; use Data::Dumper; print Data::Dumper->Dump([$foo],['foo']);
All those keys were undef, but now they were created just by asking for them.$foo = { 'a' => { 'b' => { 'c' => { 'd' => 1 } } } };
that might take care of your errors. If I totally missed your problem, sorry.my $bar = $foo->{a}->{d}; print %$bar if $bar;
|
---|