Easy Tutorial
❮ Func String Strrpos Php Intdiv ❯

PHP xml_parser_create_ns() Function



Definition and Usage

The xml_parser_create_ns() function creates an XML parser with namespace support.

Upon success, the function returns a resource handle that can be used by other XML functions. If it fails, it returns FALSE.

Syntax

Parameter Description
encoding Optional. Specifies the output encoding. In PHP 5.0.2 and later, the default is UTF-8. Possible values: ISO-8859-1, UTF-8, US-ASCII. Note: In PHP 5, the input encoding is automatically detected. In PHP 4 and earlier, this parameter specifies both input and output character encoding. Note: In PHP 5.0.0 and 5.0.1, the default output character set was ISO-8859-1.
separator Optional. Specifies the output separator for tag names and namespaces. The default is " : ".

Tips and Notes

Tip: To free the XML parser, use the xml_parser_free() function.

Tip: To create an XML parser without namespace support, use the xml_parser_create() function.


Examples


❮ Func String Strrpos Php Intdiv ❯