Συνάρτηση PHP xml_get_current_column_number()
Ορισμός και χρήση
Η συνάρτηση xml_get_current_column_number() αποδίδει τον τρέχοντα αριθμό στήλης του XML αναλυτή.
συντακτικό
xml_get_current_byte_index(παρα解析τής)
παράμετροι | περιγραφή |
---|---|
παρα解析τής | απαιτείται. Καθορίζει τον XML αναλυτή που θα χρησιμοποιηθεί. |
κατάγραφή
αν παρα解析τής Parameter does not point to a valid parser, this function will return false. Otherwise, it will return the line number of the specified parser (by the function xml_get_current_line_number() The current column number of the given)
Example
<?php // Invalid xml file $xmlfile = 'test.xml'; $xmlparser = xml_parser_create(); // Open 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 />"); } } xml_parser_free($xmlparser); ?>
Output:
ERROR: Mismatched tag Line: 8 Column: 61