精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

PHP xml_error_string() 函數

PHP xml_error_string() 函數

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

定義和用法

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);
?>

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

ERROR: Mismatched tag
Line: 5
Column: 41

PHP XML 參考手冊 完整的 PHP XML 參考手冊
相關文章