Thread Kurze Frage zu Hash in Hash (9 answers)
Opened by Lightman at 2007-02-14 17:10

Lightman
 2007-02-19 15:41
#74336 #74336
User since
2007-01-31
57 Artikel
BenutzerIn
[default_avatar]
Nach etwas rumprobieren habe ich es jetzt doch noch hinbekommen:

Code: (dl )
1
2
3
4
5
sub get_config {
   my ($self) = @_;

   return %{ $self->{_config} };
}


Und der Aufruf der Methode:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
my $config = Configuration->new(file => "config",
                                path => "./");
$config->open_file();

my %hash = $config->get_config();

# Gibt 'mysql' aus...
print $hash{Server} . "\n";

# Klappt auch wunderbar...
$hash{Server} = "test";


Danke noch einmal für eure Hilfe.

View full thread Kurze Frage zu Hash in Hash