PHP xml_error_string() 函數(shù)

2018-11-21 16:32 更新

PHP xml_error_string() 函數(shù)


PHP XML 參考手冊 完整的 PHP XML 參考手冊

定義和用法

xml_error_string() 函數(shù)獲取 XML 解析器的錯誤描述。

如果成功,該函數(shù)則返回錯誤描述。如果失敗,則返回 FALSE。

語法

xml_error_string(errorcode)

參數(shù) 描述
errorcode 必需。規(guī)定要使用的錯誤代碼。該錯誤碼是 xml_get_error_code() 函數(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);
?>

上面代碼的輸出如下所示:

ERROR: Mismatched tag
Line: 5
Column: 41


PHP XML 參考手冊 完整的 PHP XML 參考手冊
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號