Thread Auslesen von Hash-Keys und selbstaufrufende Funktion
(3 answers)
Opened by reen_sc at 2011-09-15 15:21
Als Hinweis:
Code (perl): (dl
)
1 2 3 4 5 my @var = 1 .. 38; while ( @var ) { my @splice = splice @var, 0, 10; print "@splice\n"; } Deine zweite for-Schleife musst Du mit so einem Konstrukt ersetzen: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 sub BUILD_REQUESTS { foreach my $device (keys %hash) { my @vlans = keys %{$hash{$device}}; while ( @vlans ) { my @splice = splice @vlans, 0, 10; # mache jetzt etwas mit den 10 vlans in @splice } } } OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |