PHP xml_parser_free() Function

PHP XML Parser Reference : Create an XML parser, parse an XML document (note.xml), then free the XML parser

Definition and Usage

The xml_parser_free() function frees an XML parser.

Tip: To create an XML parser use the xml_parser_create() function.

Syntax

xml_parser_free(parser)

Parameter Values

Parameter Description
parser Required. Specifies the XML parser to free

Technical Details

Return Value: TRUE on success. FALSE on failure
PHP Version: 4.0+

❮ PHP XML Parser Reference