Thread Hash in Sub dereferenzieren
(18 answers)
Opened by Opaxtl at 2007-04-19 16:24
Entweder
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 sub foo { my %hash = @_; print $hash{hallo}; } my %hash; $hash{hallo} = "welt"; foo(%hash); Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 sub foo { my %hash = %{shift @_}; print $hash{hallo}; } my %hash; $hash{hallo} = "welt"; foo(\%hash); Auf jeden Fall solltest Du [tt]use strict[/tt] verwenden. 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/ |