xml_parse()中的is_final参数有什么作用?

时间:2015-05-16 15:26:04

标签: php

我正在为xml解析创建一个类,需要在PHP中使用这个名为Improve performance of ODM modules的方法。

它有3个参数:

int xml_parse ( resource $parser , string $data [, bool $is_final = false ] )

根据PHP手册is_final,它意味着它是否是此解析中发送的最后一段数据,但这意味着什么?这件事与resource $parser有关吗?据我所知,这个功能不允许输入数据流,因此我感到困惑。

有人请解释它的作用

1 个答案:

答案 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);
?>