Thread Config::Gerneral: klappt nicht (9 answers)
Opened by pktm at 2005-10-27 01:39

pktm
 2005-10-27 01:39
#59431 #59431
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Hallo!

Ich würde gerne mal Config::General benutzen, aber wenn ich folgenden Code ausführe
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
my $file = File::Spec->catfile(qw(...));
my $config = {
abc => 123,
blubb => {
bla => [qw(array ref)],
next => 'value',
},
};

my $c = new Config::General($config);
$c->save_file($file);

erhalte ich in der Konfigurations-Datei immer nur
Quote
abc 123
<blubb>
bla array
bla ref
next value
</blubb>


Wo sind da meine Werte hin?
Wie muss ich es anstellen, dass ich komplexe Datenstrukturen verlustfrei speichern kann?

Grüße, pktm
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread Config::Gerneral: klappt nicht