PHP xml_parser_free() 函數(shù)
PHP xml_parser_free() 函數(shù)

定義和用法
xml_parser_free() 函數(shù)釋放 XML 解析器。
如果成功,該函數(shù)則返回 TRUE。如果失敗,則返回 FALSE。
語法
xml_parser_free(parser)
參數(shù) | 描述 |
---|---|
parser | 必需。規(guī)定要釋放的 XML 解析器。 |
提示和注釋
提示:要創(chuàng)建 XML 解析器,請使用 xml_parser_create() 函數(shù)。
實例
<?php
$xmlparser = xml_parser_create();
xml_parser_free($xmlparser);
?>
$xmlparser = xml_parser_create();
xml_parser_free($xmlparser);
?>

相關(guān)文章
- PHP 簡介
- PHP 超級全局變量
- PHP 函數(shù)
- PHP 魔術(shù)常量
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP date() 函數(shù)
- PHP 文件處理
- PHP 發(fā)送電子郵件
- PHP 異常處理
- PHP JSON
- PHP array_diff() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP each() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Filesystem 函數(shù)