Thread Globale Variable in einer subroutine erschaffen (8 answers)
Opened by Gast at 2007-12-11 18:36

renee
 2007-12-12 12:52
#103765 #103765
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
(kein richtiger Perl-Code, sondern nur angedeutet)
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use strict;
use warnings;

my %hash = start_all_programs();

print $hash{pc1}->{program};

sub start_all_programs{
my %tmp;

for my $pc ('pc1','pc2'){
$tmp{$pc}->{program} = 'test';
}

return %tmp;
}
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 Globale Variable in einer subroutine erschaffen