PHP xml_parser_free() Function
Description
The xml_parser_free() function frees an an XML parser.
Syntax
PHP xml_parser_free() Function has following syntax.
xml_parser_free(parser)
Parameter
Parameter | Is Required | Description |
---|---|---|
parser | Required. | XML parser to free |
Return
This function returns TRUE on success, or FALSE on failure.
Example
frees an an XML parser
<?php//w w w . j a va 2s. c om
$xmlparser = xml_parser_create();
xml_parser_free($xmlparser);
?>