Thread Hash an Methode übergeben (7 answers)
Opened by [HR]Doomrunner at 2004-02-27 11:59

renee
 2004-02-27 12:11
#80365 #80365
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
class->neu(\%in3);

sub neu {
$class = shift;
$hash_ref = shift;
my %hash = %{$hash_ref};

print "Content-type: text/html ";
print $hash{firma};
}


oder einfacher:

Code: (dl )
1
2
3
4
5
6
7
8
$class->neu(%in3);

sub neu {
 my ($class,%neu) = @_;

 print "Content-type: text/html ";
 print $neu{firma};
}

geht auch...\n\n

<!--EDIT|renee|1077876822-->
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/

View full thread Hash an Methode übergeben