• PHP Video Tutorials

PHP - Function XML Parser Free



Syntax

bool xml_parser_free ( resource $parser )

Definition and Usage

It used to free an XML parser

Return Values

It returns false if parser doesn't refer to a valid parser or else it frees the parser and returns TRUE.

Parameters

Sr.No Parameters & Description
1

parser

A reference to the XML parser to free.

Example

Try out the following example

<?php
   $local = xml_parser_create();
   xml_parser_free($local);
?>
php_function_reference.htm
Advertisements