目录

PHP xml_parser_create() 函数

❮ PHP XML 解析器参考

示例

创建 XML 解析器并解析 XML 文档(注释.xml):

<?php
// Create an XML parser
$parser=xml_parser_create();

function char($parser,$data) {
echo $data;
}

xml_set_character_data_handler($parser,"char");
$fp=fopen("note.xml","r");

while ($data=fread($fp,4096)) {
  // Parse XML data
  xml_parse($parser,$data,feof($fp)) or
  die (sprintf("XML Error: %s at line %d",
  xml_error_string(xml_get_error_code($parser)),
  xml_get_current_line_number($parser)));
}

xml_parser_free($parser);
fclose($fp);
?>
运行示例 »

定义和用法

xml_parser_create() 函数创建 XML 解析器。

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

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

语法

xml_parser_create( encoding)

参数值

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


技术细节

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

❮ PHP XML 解析器参考