The outcome of this function is heavily dependent on the parser implementation used. For example, at the point where the start_element_ callback is called, libxml2 parser consumes the entire element name and attributes, however expat does not.
(PHP 4, PHP 5, PHP 7, PHP 8)
xml_get_current_byte_index — Obtiene la indexación del byte actual en un intérprete XML
Obtiene la indexación del byte actual en un intérprete XML dado.
parser
Identificador del recurso del intérprete XML sobre el que se va a obtener la indexación del byte actual.
Devuelve cual es la indexación del byte en el que se haya actualmente el intérprete en el buffer de datos (empieza siendo 0), o devuelve false
si parser
no se refiere a un intérprete válido.
Esta función devuelve la indexación de bytes de acuerdo a la codificación de texto UTF-8 texto sin tener en cuenta si la entrada está en otra codificación.
The outcome of this function is heavily dependent on the parser implementation used. For example, at the point where the start_element_ callback is called, libxml2 parser consumes the entire element name and attributes, however expat does not.