Exemple 1. Exemple avec libxml_get_errors()
Cet exemple montre comment créer un gestionnaire d'erreurs libxml
simple.
<?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"; }
?>
|
L'exemple ci-dessus va afficher :
Fatal Error 76: Opening and ending tag mismatch: titles line 4 and title
Line: 4
Column: 0 |