目录

PHP xml_parser_create_ns() 函数

❮ PHP XML 解析器参考

示例

创建一个支持命名空间的 XML 解析器:

<?php
// Create an XML parser with namespace support
$parser=xml_parser_create_ns();

xml_parser_free($parser);
?>


定义和用法

xml_parser_create_ns() 函数创建具有命名空间支持的 XML 解析器。

提示:要释放 xml 解析器,请使用xml_parser_free()功能。

提示:要创建不支持命名空间的 XML 解析器,请使用xml_parser_create()函数代替。

语法

xml_parser_create( encoding, separator)

参数值

Parameter Description
encoding Optional. Specifies the character encoding for input/output in PHP 4. From PHP 5 it specifies the character encoding only for output. In PHP 5.0.0 and 5.0.1, the default output charset is ISO-8859-1. From PHP 5.0.2, the default output charset is UTF-8. The possible values are ISO-8859-1, UTF-8 and US-ASCII
separator Optional. Specifies the output separator for tag name and namespace. Default is " : "


技术细节

返回值: 成功时其他 XML 函数将使用的资源句柄。失败时为 FALSE
PHP 版本: 4.0.5+

❮ 完整的 PHP XML 参考