|
NAMEXML::LibXML::Dtd - XML::LibXML DTD HandlingSYNOPSISuse XML::LibXML; $dtd = XML::LibXML::Dtd->new($public_id, $system_id); $dtd = XML::LibXML::Dtd->parse_string($dtd_str); $publicId = $dtd->getName(); $publicId = $dtd->publicId(); $systemId = $dtd->systemId(); DESCRIPTIONThis class holds a DTD. You may parse a DTD from either a string, or from an external SYSTEM identifier.No support is available as yet for parsing from a filehandle. XML::LibXML::Dtd is a sub-class of XML::LibXML::Node, so all the methods available to nodes (particularly toString()) are available to Dtd objects. METHODS
AUTHORSMatt Sergeant, Christian Glahn, Petr PajasVERSION2.0207COPYRIGHT2001-2007, AxKit.com Ltd.2002-2006, Christian Glahn. 2006-2009, Petr Pajas. LICENSEThis program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |