<完整PHP XML参考
定义和用法
该xml_get_current_byte_index()函数获取XML解析器的字节索引。
该函数成功返回当前字节索引,或FALSE的失败。
句法
xml_get_current_byte_index(parser)
参数 | 描述 |
---|---|
parser | 需要。 指定XML解析器使用 |
例
<?php
//invalid xml file
$xmlfile = 'test.xml';
$xmlparser = xml_parser_create();
// open a file and read data
$fp = fopen($xmlfile, 'r');
while ($xmldata = fread($fp, 4096))
{
// parse the data chunk
if (!xml_parse($xmlparser,$xmldata,feof($fp)))
{
die( print "ERROR: "
. xml_error_string(xml_get_error_code($xmlparser))
. "<br />"
. "Line: "
. xml_get_current_line_number($xmlparser)
. "<br />"
. "Column: "
. xml_get_current_column_number($xmlparser)
. "<br />"
. "Byte Index: "
. xml_get_current_byte_index($xmlparser)
. "<br />");
}
}
xml_parser_free($xmlparser);
?>
代码的输出以上可以是:
ERROR: Mismatched tag
Line: 5
Column: 41
Byte Index: 72
<完整PHP XML参考