A função xml_get_current_byte_index() obtém o índice de bytes atual do analisador XML.
Se for bem-sucedido, a função retornará o índice de bytes atual. Se falhar, retorna FALSE.
xml_get_current_byte_index(analisador)
parâmetro | descrever |
---|---|
analisador | Obrigatório. Especifica o analisador XML a ser usado. |
<?php//arquivo xml inválido$xmlfile = 'test.xml';$xmlparser = xml_parser_create();// abre um arquivo e lê os dados$fp = fopen($xmlfile, 'r');while ($xmldata = fread($fp, 4096)) { // analisa o bloco de dados se (!xml_parse($xmlparser,$xmldata,feof($fp))) { die( print "ERRO: " . xml_error_string(xml_get_error_code($xmlparser)) . "<br />" . "Linha: " . xml_get_current_line_number($ xmlparser) "<br />" . xml_get_current_column_number($xmlparser) "<br />" }xml_parser_free($xmlparser);?>
A saída do código acima é semelhante a esta:
ERRO: TagLine incompatível: 5Coluna: 41Índice de bytes: 72