The xml_parser_free() function frees the XML parser.
If successful, the function returns TRUE. If it fails, returns FALSE.
xml_parser_free(parser)
parameter | describe |
---|---|
parser | Required. Specifies the XML parser to be released. |
Tip: To create an XML parser, use the xml_parser_create() function.
<?php$xmlparser = xml_parser_create();xml_parser_free($xmlparser);?>