📜  PHP | xml_get_current_byte_index()函数

📅  最后修改于: 2022-05-13 01:56:55.700000             🧑  作者: Mango

PHP | xml_get_current_byte_index()函数

先决条件: XML 基础

xml_get_current_byte_index()函数是PHP中的一个内置函数,用于返回 XML 解析器的字节索引。

句法:

int xml_get_current_byte_index( resource $parser)

参数:此函数接受所需的单个参数$xml_parser 。此参数指定要使用的 XML 解析器。

返回值:此函数在成功时返回指定解析器的当前字节索引,在失败时返回 False。

注意:此函数适用于PHP 4.0.0 及更新版本。

下面的程序说明了PHP中的 xml_get_current_byte_index()函数:

gfg.xml 文件(不匹配标签):



     user123 
     firstname lastname 
     +91-9876543210 
     I am John Doe. Live in Kolkata, India. 

方案一:

Error Code: " . 
               
            // Error code
            xml_get_error_code($xml_parser) . 
               
            "
Line: " .                              // Line number where the error occurred                 xml_get_current_line_number($xml_parser) .                              "
Column: " .                              // Column number where the error occurred                 xml_get_current_column_number($xml_parser) .                              "
Byte Index: " .                              // Byte index where the current byte occurred             xml_get_current_byte_index($xml_parser) . "
"         );     } }     // Free to xml parser xml_parser_free($xml_parser);     ?>

输出:

ERROR: Mismatched tag
Error Code: 76
Line: 7
Column: 13
Byte Index: 208

极客.xml 文件:



     user123 
     firstname lastname 
     +91-9876543210 
     I am John Doe. Live in Kolkata, India. 

方案二:

Error Code: " . 
               
            // Error code
            xml_get_error_code($xml_parser) . 
               
            "
Line: " .                              // Line number where the error occurred                 xml_get_current_line_number($xml_parser) .                              "
Column: " .                              // Column number where the error occurred                 xml_get_current_column_number($xml_parser) .                              "
Byte Index: " .                              // Byte index where the current byte occurred             xml_get_current_byte_index($xml_parser) . "
"         );     } }     // Free to xml parser xml_parser_free($xml_parser);     ?>

输出:

ERROR: String not closed expecting " or '
Error Code: 34
Line: 1
Column: 36
Byte Index: 37

参考: https://www. PHP.net/manual/en/函数.xml-get-current-byte-index。 PHP