PHP xml_get_current_column_number() ফাংশন
সংজ্ঞা ও ব্যবহার
xml_get_current_column_number() ফাংশন এক্সএমএল পার্সারের বর্তমান কলাম সংখ্যা পাওয়ার জন্য ব্যবহৃত হয়。
ব্যাবহারিক ভাষা
xml_get_current_byte_index(parser)
পারামিটার | বর্ণনা |
---|---|
parser | অপরিহার্য। ব্যবহার্য এক্সএমএল পার্সারকে নির্দিষ্ট করুন。 |
ব্যাখ্যা
যদি parser The 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 function xml_get_current_line_number() given) current column number.
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