Thread Geeignetes Modul Konfigurationsfile (3 answers)
Opened by styx-cc at 2007-08-28 18:43

styx-cc
 2007-08-28 22:11
#98794 #98794
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Hmm... das sieht ja schon mal ganz gut aus, danke!

Code: (dl )
1
2
3
4
5
6
7
8
#!/usr/bin/perl -w
use strict;
use Config::General;

my $conf = new Config::General('conf/default.conf');
my %config = $conf->getall;

print "$config{'categories'}{1}\n";


Wenn ich jetzt allerdings auf das erste (von mir aus ist die 1 in dem Hashaufruf auch das zweite) Element zugreifen moechte, bin ich trotzdem gezwungen das so zu schreiben:

Code: (dl )
1
2
3
4
5
6
7
#different image categories
<categories>
1=katergorie eins
2=kategorie zwei
.
.
</categories>


Also mit
1=xy
2=xy

oder gibts da nen Weg um direkt das n-te Element aus einem Block zu lesen? Sonst haette ich das ja auch mit Config::INI::Simple geloest bekommen..

MfG
Pörl.

View full thread Geeignetes Modul Konfigurationsfile