PHP.nl

xml_parser_create

xml_parser_create

Create an XML parser

XMLParser **xml_parser_create**  $encoding
creates a new XML parser

and returns a instance to be used by the other XML functions. xml_parser_create``XMLParser

encoding The input encoding is automatically detected, so that the parameter specifies only the output encoding. If empty string is passed, the parser attempts to identify which encoding the document is encoded in by looking at the heading 3 or 4 bytes. The default output charset is UTF-8. The supported encodings are , and . encoding``ISO-8859-1``UTF-8``US-ASCII

Returns a new instance. XMLParser

xml_parser_create_ns