当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP libxml_clear_errors()用法及代码示例



定义和用法

XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 libXMLError 类包含由 libxml 库抛出的错误。

这个

libxml_clear_errors()

函数用于检索 XML 字符串或文档中的最后一个错误。

用法

libxml_clear_errors();

参数

该函数不接受任何参数。

返回值

这个函数返回一个类型的对象LibXMLError表示 XML 文件/字符串中的最后一个错误。如果指定的 XML 中没有错误,此函数将返回一个空字符串。

PHP版本

这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。

示例

下面的例子演示了 libxml_get_last_error() 函数的用法——

<?xml version="1.0" encoding="utf-8"?>
<Tutorials>
   <Tutorial>
      <Name>JavaFX</Name>
      <Pages>535</Pages>
      <Author>Krishna</Author>
      <Version>11<Version>
   </Tutorial>

   <Tutorial>
      <Name>CoffeeScript</Name>
      <Pages>235</Pages>
      <Author>Kasyap</test>
      <Version>2.5.1</Version>
   </Tutorial>
   
   <Tutorial>
      <Name>OpenCV</Name>
      <Pages>150</Pages>
      <Author>Maruti</Author>
      <Version></Version>
   </Tutorial>
</Tutorials>

Sample.xml:

<html>
   <head>
      <body>
         <?php
            libxml_use_internal_errors(true);
            $doc = new DOMDocument;
            $str = $doc->load(data.xml');
            if (!$str) {
               foreach (libxml_get_errors() as $error) {
                  print_r($error);
                  print("<br><br>");
               }
               libxml_clear_errors();
            }
         ?>      
      </body>
   </head>   
</html>

这将产生以下结果 -

LibXMLError Object ( 
   [level] => 3 
   [code] => 76 
   [column] => 15 
   [message] => Opening and ending tag mismatch:Version line 7 and Tutorial 
   [file] => file:/C:/Apache24/htdocs/sample/trail.xml 
   [line] => 8 
)
LibXMLError Object ( 
   [level] => 3 
   [code] => 76 
   [column] => 28 
   [message] => Opening and ending tag mismatch:Author line 7 and test 
   [file] => file:/C:/Apache24/htdocs/sample/trail.xml 
   [line] => 13 
)
LibXMLError Object ( 
   [level] => 3 
   [code] => 76 
   [column] => 13 
   [message] => Opening and ending tag mismatch:Version line 7 and Tutorials 
   [file] => file:/C:/Apache24/htdocs/sample/trail.xml 
   [line] => 23 
)
LibXMLError Object ( 
   [level] => 3 
   [code] => 74 
   [column] => 13 
   [message] => EndTag:' file:/C:/Apache24/htdocs/sample/trail.xml 
   [line] => 23 
)

相关用法


注:本文由纯净天空筛选整理自 PHP libxml_clear_errors() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。