Easy Tutorial
❮ Func Array Search Func Ftp Mdtm ❯

PHP xml_parser_create() Function



Definition and Usage

The xml_parser_create() function creates an XML parser.

On success, the function returns a resource handle that can be used with other XML functions. On failure, 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<br> UTF-8<br> 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 encodings. Note: In PHP 5.0.0 and 5.0.1, the default output character set was ISO-8859-1.

Tips and Notes

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

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


Examples


❮ Func Array Search Func Ftp Mdtm ❯