PHP xml_error_string() 函數
PHP xml_error_string() 函數

定義和用法
xml_error_string() 函數獲取 XML 解析器的錯誤描述。
如果成功,該函數則返回錯誤描述。如果失敗,則返回 FALSE。
語法
xml_error_string(errorcode)
參數 | 描述 |
---|---|
errorcode | 必需。規定要使用的錯誤代碼。該錯誤碼是 xml_get_error_code() 函數的返回值。 |
實例
<?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

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