http://qs321.pair.com?node_id=623886


in reply to Checking if a variable is an array

That's a feature of XML::Simple - this difference of behavior between a node which happens once or multiple times. Most of the time, when you expect a node that happen one or more times, you want to tell XML::Simple to always return an array of hashes, so you have a uniform way to deal with the data.

That's what ForceArray attribute for.

$data = XMLin( $xml, ForceArray => [ qw(Layer) ] )
will guarantee that every time Layer is seen, it creates an array (ref).

Otherwise you'll always have to code something like that:

my $layers = $data->{Capabilities}->{Layer}; for my $layer ( ref $layers eq 'ARRAY' ? @$layers : ( $layers ) ) { # do something to each Layer }