目录

PHP xml_set_default_handler() 函数

❮ PHP XML 解析器参考

示例

创建 XML 解析器,设置默认数据处理程序,并解析 XML 文档(注释.xml):

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

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

// Set the default data handler
xml_set_default_handler($parser,"def");

$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_set_default_handler() 函数设置 XML 解析器的默认数据处理程序。

该函数指定解析器在 XML 文件中找到数据时要调用的函数。

笔记:这个处理程序参数也可以是包含对象引用和方法名称的数组。

语法

xml_set_default_handler( parser, handler)

参数值

Parameter Description
parser Required. Specifies the XML parser to use
handler Required. Specifies a function to be used as an event handler. The function must have two parameters:
  • $parser - A variable containing the XML parser calling the handler
  • $data - A variable containing the character data from the XML file as a string


技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 4.0+

❮ PHP XML 解析器参考