创建一个支持命名空间的 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+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!