2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
my %childtables;
foreach my $child (@{$ele->child()}){
my @arr;
if($childtables{${$ele->doc_type()}}[0]) { #line 215
@arr = @childtables{${$ele->doc_type()}};
}
push(@arr,$child);
@childtables{${$ele->doc_type()}} = @arr;
}
$childtables{${$ele->doc_type()}}[0]
$childtables{ $ele->doc_type() }[0]
${ $ele->doc_type() }
1
2
3
4
5
6
7
8
9
10
11
12
my %childtables;
foreach my $child ( @{ $ele->child() } )
{
if( ref( $childtables{ $ele->doc_type() } ) ne "ARRAY" )
{
$childtables{ $ele->doc_type( ) }=[ $child ];
}
else
{
push( @{ $childtables{ $ele->doc_type() } }, $child );
}
}
2 Einträge, 1 Seite |