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

ParameterIs RequiredDescription
parserRequired.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);
?>




















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions