举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > PHP xml_get_current_byte_index() 函数

PHP xml_get_current_byte_index() 函数

2023-05-05 13:18 PHP教程

 PHP xml_get_current_byte_index() 函数

PHP xml_get_current_byte_index() 函数


PHP XML 参考手册 完整的 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 参考手册 完整的 PHP XML 参考手册
阅读全文
以上是编程学为你收集整理的 PHP xml_get_current_byte_index() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  • php处理表单 PHP表单多值字段

    php处理表单 PHP表单多值字段

    2023-03-05 PHP教程

    PHP教程 -PHP表单多值字段表单字段可以发送多个值,而不是单个值。实施例1例如,以下表单字段能够向服务器发送多个值:label for=...

  • phpfor循环输出1到100 PHP for循环

    phpfor循环输出1到100 PHP for循环

    2023-04-18 PHP教程

    PHP教程 -PHP for循环for循环由声明,条件和操作组成:declaration defines a loop-counter variable and sets it to a starting ...

  • php 函数 PHP nl2br() 函数

    php 函数 PHP nl2br() 函数

    2023-04-21 PHP教程

    PHP nl2br() 函数PHP String 参考手册实例 在字符串中的新行(n)之前插入换行符:?php echo nl2br("One line.nAnother line.");...

  • php rmdir PHP rmdir() 函数

    php rmdir PHP rmdir() 函数

    2023-03-05 PHP教程

    PHP rmdir() 函数 完整的 PHP Filesystem 参考手册定义和用法 rmdir() 尝试删除dirname所指定的目录。 该目录必须是空的,而且要...

  • php 语句 PHP 7 use 语句

    php 语句 PHP 7 use 语句

    2023-03-12 PHP教程

    PHP 7 use 语句 PHP 7 新特性PHP 7 可以使用一个 use 从同一个 namespace 中导入类、函数和常量:实例实例//PHP7之前版本需要使...

© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部