欢迎访问服务器技术网-www.fuwuqijishu.com

PHP xml_error_string() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 76次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP xml_error_string() 函数


完整的 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 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2122.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900