Fonction xml_parser_free() PHP
Définition et utilisation
La fonction xml_parser_free() libère l'analyseur XML.
Retourne true si succès. Sinon, retourne false.
Syntaxe
xml_parser_free(parser)
Paramètres | Description |
---|---|
parser | Obligatoire. Définit l'analyseur XML à libérer. |
Astuce et commentaires
Astuce :Pour créer un analyseur XML, utilisez xml_parser_create() Fonction.
Exemple
<?php $xmlparser = xml_parser_create(); xml_parser_free($xmlparser); ?>