PHP libxml_get_last_error() 函数



定义和用法

XML 是一种用于在网络上共享数据的标记语言,XML 既可供人类阅读,也可供机器阅读。LibXMLError 类包含 libxml 库抛出的错误。

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

语法

SimpleXMLElement::libxml_get_errors();

参数

此函数不接受任何参数。

返回值

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

PHP 版本

此函数首次在 PHP 5 版本中引入,并在所有后续版本中均有效。

示例

以下示例演示了 libxml_get_last_error() 函数的用法。

<html>
   <head>
      <body>
         <?php
            libxml_use_internal_errors(true);
            $str = "<Data xmlns:ns='http://test.com/data'> 
               <Employee> 
                  <ns:Name>Krishna</ns:Name> 
                  <Age>30</Age> 
                  <City>Hyderabad</City> 
               </Employeee> 
        
               <Employee> 
                  <ns:Name>Ramu</ns:Name>
                  <Age>25</Age> 
                  <City>Delhi</test> 
               </Employee>    
            </Data> "; 
            $doc = simplexml_load_string($str);

            if ($doc === false) {
               $error = libxml_get_last_error();	
               print("Error: ");			
               print_r($error);
            }
         ?>      
      </body>
   </head>   
</html>

这将产生以下结果 -

Error: LibXMLError Object ( 
   [level] => 3 
   [code] => 76 
   [column] => 31 
   [message] => Opening and ending tag mismatch: City line 2 and test \
   [file] => [line] => 11 
)

示例

以下是此函数的另一个示例 -

data.xml

<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.html

<html>
   <head>      
      <body>         
         <?php
            libxml_use_internal_errors(true);
            $xml = simplexml_load_file("data.xml");
            if ($xml === false) {
               $error = libxml_get_last_error();	
               print("Error: ");			
               print_r($error);
               echo "<br><br>";         
            }
         ?>
      </body>
   </head>
</html>

这将产生以下输出 -

Error: LibXMLError Object ( 
   [level] => 3 
   [code] => 74 
   [column] => 13 
   [message] => EndTag: ' trail.xml 
   [line] => 23 
)
php_function_reference.htm
广告