Funzione xml_get_error_code() PHP
Definizione e uso
La funzione xml_get_error_code() recupera il codice di errore dell'analizzatore XML.
Se ha avuto successo, restituisce il codice di errore. Altrimenti, restituisce false.
Sintassi
xml_get_error_code(parser)
Parametro | Descrizione |
---|---|
parser | Obbligatorio. Specifica l'analizzatore XML da utilizzare. |
Esempio
<?php // File xml non valido $xmlfile = 'test.xml'; $xmlparser = xml_parser_create(); // Apri il file e leggi i dati $fp = fopen($xmlfile, 'r'); while ($xmldata = fread($fp, 4096)) { // parse the data chunk if (!xml_parse($xmlparser,$xmldata,feof($fp))) { die( print "ERROR: " . xml_get_error_code($xmlparser) . "<br />" . "Line: " . xml_get_current_line_number($xmlparser) . "<br />" . "Column: " . xml_get_current_column_number($xmlparser) . "<br />"); } } xml_parser_free($xmlparser); ?>
Output:
ERROR: 76 Line: 8 Column: 61