PHP xml_get_current_line_number() Function
Complete PHP XML Reference
Definition and Usage
The xml_get_current_line_number() function gets the current line number for
an XML parser.
This function returns the current line number on success, or FALSE on
failure.
Syntax
|
xml_get_current_line_number(parser)
|
| Parameter |
Description |
| parser |
Required. Specifies XML parser to use |
Example
<?php
//invalid xml file
$xmlfile = 'test.xml';
$xmlparser = xml_parser_create();
// open a 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);
?>
|
The output of the code above could be:
ERROR: Mismatched tag
Line: 5
Column: 41
|
Complete PHP XML Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|