   #PHP Manual XML parser functions xml_parse xml_parser_create

   PHP Manual
   Prev  Next
   ______________________________________________________________________

                             xml_parser_create_ns

   (PHP 4 >= 4.0.5)
   xml_parser_create_ns --  Create an XML parser with namespace support

Description

   resource xml_parser_create_ns ( [string encoding [, string
   separator]])

   xml_parser_create_ns() creates a new XML parser with XML namespace
   support and returns a resource handle referencing it to be used by the
   other XML functions.

   With a namespace aware parser tag parameters passed to the various
   handler functions will consist of namespace and tag name separated by
   the string specified in seperator or ':' by default.

   The optional encoding specifies the character encoding of the XML
   input to be parsed. Supported encodings are "ISO-8859-1", which is
   also the default if no encoding is specified, "UTF-8" and "US-ASCII".

   See also xml_parser_create(), and xml_parser_free().
   ______________________________________________________________________

   Prev      Home              Next
   xml_parse  Up  xml_parser_create
