Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 2.1AS

(Slurm)

XML::Dumper(3pm)


Dumper

Dumper

NAME
SYNOPSIS
DESCRIPTION
AUTHOR
CREDITS
SEE ALSO

NAME

XML: :Dumper − Perl module for dumping Perl objects from/to XML

SYNOPSIS

 # Convert Perl code to XML
 use XML::Dumper;
 my $dump = new XML::Dumper;
 $data = [
          {
            first => ’Jonathan’,
            last => ’Eisenzopf’,
            email => ’eisen@pobox.com’
          },
          {
            first => ’Larry’,
            last => ’Wall’,
            email => ’larry@wall.org’
          }
         ];
 $xml =  $dump->pl2xml($perl);
 # Convert XML to Perl code
 use XML::Dumper;
 my $dump = new XML::Dumper;
 # some XML
 my $xml = <<XML;
<perldata>
 <scalar>foo</scalar>
</perldata>
XML

 # load Perl data structure from dumped XML
 $data = $dump->xml2pl($Tree);

DESCRIPTION

XML: :Dumper dumps Perl data to a structured XML format. XML: :Dumper can also read XML data that was previously dumped by the module and convert it back to Perl.

This is done via the following 2 methods: XML: :Dumper::pl2xml XML: :Dumper::xml2pl

AUTHOR

Jonathan Eisenzopf <eisen@pobox.com>

CREDITS

Chris Thorman <ct@ignitiondesign.com> L.M.Orchard <deus_x@pobox.com> DeWitt Clinton <dewitt@eziba.com>

SEE ALSO

perl(1), XML:\fIs0:Parser(3).



XML::Dumper(3pm)