Thread XML::Simple Daten in eine Datei schreiben
(7 answers)
Opened by Dennis at 2011-04-10 17:10
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 perl xml_simple.pl 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/ |