PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<libxml_clear_errorslibxml_get_last_error>
Last updated: Mon, 16 Jul 2012

libxml_get_errors

(PHP 5)

libxml_get_errors --  Retrieve array of errors

说明

array libxml_get_errors ( void )

Retrieve array of errors.

返回值

Returns an array with LibXMLError objects if there are any errors in the buffer, or an empty array otherwise.

例子 1. A libxml_get_errors() example

This example demonstrates how to build a simple libxml error handler.

<?php

libxml_use_internal_errors
(true);

$xmlstr = <<< XML
<?xml version='1.0' standalone='yes'?>
<movies>
 <movie>
  <titles>PHP: Behind the Parser</title>
 </movie>
</movies>
XML;

$doc = simplexml_load_string($xmlstr);

if (!
$doc) {
  
$errors = libxml_get_errors();

   foreach (
$errors as $error) {
       echo
display_xml_error($error);
   }

  
libxml_clear_errors();
}


function
display_xml_error($error) {

   switch (
$error->level) {
       case
LIBXML_ERR_WARNING:
          
$return = "Warning $error->code: ";
           break;
         case
LIBXML_ERR_ERROR:
          
$return = "Error $error->code: ";
           break;
       case
LIBXML_ERR_FATAL:
          
$return = "Fatal Error $error->code: ";
           break;
   }

  
$return .= trim($error->message) .
              
"\n  Line: $error->line" .
              
"\n  Column: $error->column";

   if (
$error->file) {
      
$return .= "\n  File: $error->file";
   }

   return
"$return\n";
}

?>

上例将输出:

Fatal Error 76: Opening and ending tag mismatch: titles line 4 and title
  Line: 4
  Column: 0




<libxml_clear_errorslibxml_get_last_error>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST