Thread Hashes of Arrays (8 answers)
Opened by flango at 2006-07-08 17:19

renee
 2006-07-08 22:08
#8275 #8275
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du verwendest Hash-Referenzen und versuchst dann darauf wie auf einen "normalen" Hash zuzugreifen...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl

use strict;
use warnings;

use CGI;
use CGI::Carp qw(fatalsToBrowser);
use GD;
use Scalar::Util::Numeric qw(isnum isint isfloat);


my $cgi = new CGI;
my %standort;
my @standorte;
my @Feldnamen = $cgi->param();
print $cgi->header(),
$cgi->start_html('CGI-Feedback'),
$cgi->h1('CGI-Feedback vom Programm ',$cgi->i('zeichnen.cgi'));
foreach my $Feld (@Feldnamen) {
push (@standorte,{$Feld =>$cgi->param($Feld)});
}

foreach my $hash (@standorte) {
my $hash_value = $hash->{standort_1};
my ($key) = keys(%$hash);
if ( $key =~ /stand/i ) {
print "<br>";
print keys %$hash;
print " --- ";
print values %$hash;
}
}
}
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 Hashes of Arrays