PHP xml_error_string() 函數(shù)
PHP xml_error_string() 函數(shù)

定義和用法
xml_error_string() 函數(shù)獲取 XML 解析器的錯(cuò)誤描述。
如果成功,該函數(shù)則返回錯(cuò)誤描述。如果失敗,則返回 FALSE。
語法
xml_error_string(errorcode)
參數(shù) | 描述 |
---|---|
errorcode | 必需。規(guī)定要使用的錯(cuò)誤代碼。該錯(cuò)誤碼是 xml_get_error_code() 函數(shù)的返回值。 |
實(shí)例
<?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);
?>
//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);
?>
上面代碼的輸出如下所示:
ERROR: Mismatched tag
Line: 5
Column: 41
Line: 5
Column: 41

相關(guān)文章
- PHP 安裝
- PHP 類型比較
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP 多維數(shù)組
- PHP Cookie
- PHP Session
- PHP 高級(jí)過濾器
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP sizeof() 函數(shù)