XML::Simple 2.14 review

Download
by rbytes.net on

License: Perl Artistic License
File size: 64K
Developer: Grant McLean
0 stars award from rbytes.net

XML::Simple is a easy API to maintain XML (esp config files).

SYNOPSIS

use XML::Simple;

my $ref = XMLin([< xml file or string >] [, < options >]);

my $xml = XMLout($hashref [, < options >]);

Or the object oriented way:

require XML::Simple;

my $xs = new XML::Simple(options);

my $ref = $xs->XMLin([< xml file or string >] [, < options >]);

my $xml = $xs->XMLout($hashref [, < options >]);

(or see "SAX SUPPORT" for 'the SAX way').

To catch common errors:

use XML::Simple qw(:strict);

Requirements:
Perl

XML::Simple 2.14 keywords