我正在为xml解析创建一个类,需要在PHP中使用这个名为Improve performance of ODM modules的方法。
它有3个参数:
int xml_parse ( resource $parser , string $data [, bool $is_final = false ] )
根据PHP手册is_final
,它意味着它是否是此解析中发送的最后一段数据,但这意味着什么?这件事与resource $parser
有关吗?据我所知,这个功能不允许输入数据流,因此我感到困惑。
有人请解释它的作用
答案 0 :(得分:2)
is_final
表示如果要解析$data
的最后一行,则必须将此参数设置为true。
此外,Doc中还有一个注释:
Entity errors are reported at the end of the parse. And will only show if the "end" parameter is TRUE
请参阅以下w3schools
中的示例<?php
$parser=xml_parser_create();
function char($parser,$data)
{
echo $data;
}
xml_set_character_data_handler($parser,"char");
$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);
?>