Thread XML::Simple Daten in eine Datei schreiben (7 answers)
Opened by Dennis at 2011-04-10 17:10

renee
 2011-04-10 17:25
#147528 #147528
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Es wäre gut, wenn Du etwas genauer beschreibst was Du machen willst...

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

use strict;
use warnings;
use XML::Simple;

my $data = {
  communities => [
    {
            name => 'perl-community.de',
            url  => 'http://www.perl-community.de',
    },
    {
            name => 'otrs-community',
            url  => 'http://www.otrs.org',
    },
  ],
};

my $xs = XML::Simple->new;
my $xml = $xs->XMLout( $data );
print $xml;


Code: (dl )
1
2
3
4
5
perl xml_simple.pl
<opt>
<communities name="perl-community.de" url="http://www.perl-community.de" />
<communities name="otrs-community" url="http://www.otrs.org" />
</opt>


Um in eine Datei zu schreiben, solltest Du Dir perldoc -f open anschauen...
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 XML::Simple Daten in eine Datei schreiben