PHP libxml_clear_errors() 函数



定义和用法

XML 是一种用于在网络上共享数据的标记语言,XML 既可以被人阅读,也可以被机器阅读。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_function_reference.htm
广告