當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP libxml_use_internal_errors()用法及代碼示例



定義和用法

XML 是一種 mark-up 語言,用於在網絡上共享數據,XML 用於人類 read-able 和機器 read-able。 libXMLError 類包含由 libxml 庫拋出的錯誤。

每當給定的 XML 文件或字符串中存在語法錯誤時。 PHP 產生錯誤。使用libxml_use_internal_errors()函數,您可以避免錯誤的產生,並根據需要使用相應的函數在程序中獲取它們。

用法

SimpleXMLElement::libxml_get_errors();

參數

Sr.No 參數及說明
1

use_errors (Optional)

如果傳遞 TRUE,則這是一個布爾值,傳遞 FALSE 時啟用和禁用錯誤處理。

返回值

此函數返回 use_errors 參數的先前值。

PHP版本

這個函數最初是在 PHP 版本 5 中引入的,並且適用於所有後續版本。

示例

下麵的例子演示了 libxml_use_internal_errors() 函數的用法。

<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) {
               $errors = libxml_get_errors();	
               print("Errors:");			
               print_r($errors);
               echo "<br><br>";
            }
         ?>      
      </body>
   </head>   
</html>

這將產生以下結果 -

Errors:Array (
   [0] => LibXMLError Object (
      [level] => 3 [code] => 76 
      [column] => 30 
      [message] => Opening and ending tag mismatch:Employee line 2 and Employeee 
      [file] => 
      [line] => 6
   ) 
   [1] => LibXMLError Object ( 
      [level] => 3 
      [code] => 76 
      [column] => 31 
      [message] => Opening and ending tag mismatch:City line 2 and test 
      [file] => 
      [line] => 11 
   )
)
Errors:Array (
   [0] => LibXMLError Object (
      [level] => 3 
      [code] => 76 
      [column] => 30 
      [message] => Opening and ending tag mismatch:Employee line 2 and Employeee 
      [file] => 
      [line] => 6
   )
)

示例

以下是此函數的另一個示例 -

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 - libxml_use_internal_errors() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。