The xml_parser_free() function frees an an XML parser.
PHP xml_parser_free() Function has following syntax.
xml_parser_free(parser)
Parameter | Is Required | Description |
---|---|---|
parser | Required. | XML parser to free |
This function returns TRUE on success, or FALSE on failure.
frees an an XML parser
<?php
$xmlparser = xml_parser_create();
xml_parser_free($xmlparser);
?>