PHP xml_set_notation_decl_handler() 函数
PHP xml_set_notation_decl_handler() 函数
完整的 PHP XML 参考手册定义和用法
xml_set_notation_decl_handler() 函数规定当解析器在 XML 文档中找到符号声明时被调用的函数。
如果成功,该函数则返回 TRUE。如果失败,则返回 FALSE。
语法
xml_set_notation_decl_handler(parser,handler)
参数 | 描述 |
---|---|
parser | 必需。规定要使用的 XML 解析器。 |
handler | 必需。规定当解析器找到符号声明时被调用的函数。 |
由 "handler" 参数规定的函数必须有五个参数:
参数 | 描述 |
---|---|
parser | 必需。规定一个变量,包含调用处理器的 XML 解析器。 |
name | 必需。规定一个变量,包含符号声明名称。 |
base | 必需。规定解析符号声明的系统标识符(system_id)的基础。当前该参数通常都被设置为 NULL。 |
system_id | 必需。规定一个变量,包含符号声明的系统标识符。 |
public_id | 必需。规定一个变量,包含符号声明的公共标识符。 |
提示和注释
注释:handler 参数也可以是一个包含对象引用和方法名的数组。
实例
<?php
$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 />";
}
xml_set_character_data_handler($parser,"char");
xml_set_notation_decl_handler($parser, "not_decl_handler");
$fp=fopen("test.xml","r");
while ($data=fread($fp,4096))
{
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);
?>
$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 />";
}
xml_set_character_data_handler($parser,"char");
xml_set_notation_decl_handler($parser, "not_decl_handler");
$fp=fopen("test.xml","r");
while ($data=fread($fp,4096))
{
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);
?>
完整的 PHP XML 参考手册
相关文章
- PHP 语法
- PHP $_GET 变量
- PHP 错误处理
- PHP 过滤器
- PHP JSON
- PHP array_intersect_assoc() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_first() 函数
- PHP array_pad() 函数
- PHP array_replace() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP shuffle() 函数
- PHP uasort() 函数
- PHP 5 Calendar 函数
- PHP HTTP 函数
- PHP 5 MySQLi 函数