in reply to Behaviour of parsed XML
I hate the software that does not keep the return value consistent. Short of asking a parser for an array reference (somehow) regardless of number of items present, however, I do not see a parser to always return an array reference in the situation described. With that out of the way ...
Your problem seems to be of variable scope. Why do you have "my" in ...
if (exists($data->{channel}->{title})) { ... my $data->{channel}->{item}->[0]=$mydata; ... }
...? After the end of the if-block, $data->{channel}->{item}->[0] ceases to exist due to my operator.
Try ...
use strict; use warnings; use Data::Dumper; my $x; { my $x->{a}->[0] = "no you don't!"; # my op also affects unrelated keys. Why? $x->{c}->[0] = "try this with previous 'my' for extra fun"; } { $x->{b}->[0] = "now you see"; } print Dumper $x; __END__ $VAR1 = { 'b' => [ 'now you see' ] };
In perl 5.30.1, I am disturbed by the fact that "extra fun" does not make into the Dumper output (but not disturbed enough to file a problem report myself).
After tobyink & haukex had set me straight, please ignore the above code; try this ...
use strict; use warnings; use Data::Dumper; my $x; { my $x->{a}->[0] = "no you don't!"; } { $x->{b}->[0] = "now you see"; } print Dumper $x; __END__ $VAR1 = { 'b' => [ 'now you see' ] };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Variable scope issue- effect of "my" on hash ref keys, values
by tobyink (Canon) on Feb 26, 2020 at 13:16 UTC | |
by parv (Parson) on Feb 26, 2020 at 13:24 UTC | |
|
Re: Variable scope issue- effect of "my" on hash ref keys, values
by haukex (Archbishop) on Feb 26, 2020 at 13:16 UTC | |
|
Re: Variable scope issue- effect of "my" on hash ref keys, values
by Veltro (Hermit) on Feb 26, 2020 at 13:23 UTC |