PHP xml_set_notation_decl_handler() 函数
实例
创建 XML 解析器,设置字符数据处理程序,设置符号声明处理程序,并解析 XML 文档:
<?php
// Create an XML parser
$parser=xml_parser_create();
function char($parser,$data) {
echo $data;
}
function not_decl_handler($parser,$not,$base,$sysID,$pubID)
{
echo "$not<br>";
echo "$sysID<br>";
echo "$pubID<br>";
}
// Set the
character data handler
xml_set_character_data_handler($parser,"char");
// Set the
notation declaration handler
xml_set_notation_decl_handler($parser, "not_decl_handler");
$fp=fopen("note_notation.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_notation_decl_handler() 函数规定当解析器在 XML 文档中找到符号声明时被调用的函数。
注释: handler 参数也可以是一个包含对象引用和方法名的数组。
语法
xml_set_notation_decl_handler(parser, handler)
参数值
参数 | 描述 |
---|---|
parser | 必需。规定要使用的 XML 解析器。 |
handler | 必需。规定当解析器找到符号声明时被调用的函数。由 "handler" 参数规定的函数必须有五个参数:
|
技术细节
返回值: | 若成功则返回 TRUE,若失败则返回 FALSE。 |
---|---|
PHP 版本: | 4.0+ |
❮ PHP XML 解析参考