web-dev-qa-db-fra.com

php de gestion des erreurs simplexml

J'utilise le code suivant:

function GetTwitterAvatar($username){
$xml = simplexml_load_file("http://Twitter.com/users/".$username.".xml");
$imgurl = $xml->profile_image_url;
return $imgurl;
}

function GetTwitterAPILimit($username, $password){
$xml = simplexml_load_file("http://$username:[email protected]/account/rate_limit_status.xml");
$left = $xml->{"remaining-hits"};
$total = $xml->{"hourly-limit"};
return $left."/".$total;
}

et obtenir ces erreurs lorsque le flux ne peut pas se connecter:

Warning: simplexml_load_file(http://Twitter.com/users/****.xml) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.0 503 Service Unavailable

Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://Twitter.com/users/****.xml" 

Warning: simplexml_load_file(http://[email protected]/account/rate_limit_status.xml) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.0 503 Service Unavailable

Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://***:***@Twitter.com/account/rate_limit_status.xml"

Comment puis-je gérer ces erreurs afin d'afficher un message convivial au lieu de ce qui est indiqué ci-dessus?

23
mrpatg

J'ai trouvé un bel exemple dans la documentation php .

Le code est donc:

libxml_use_internal_errors(true);
$sxe = simplexml_load_string("<?xml version='1.0'><broken><xml></broken>");
if (false === $sxe) {
    echo "Failed loading XML\n";
    foreach(libxml_get_errors() as $error) {
        echo "\t", $error->message;
    }
}

Et la sortie, comme nous/je m'y attendais:

Échec du chargement de XML

Blank needed here
parsing XML declaration: '?>' expected
Opening and ending tag mismatch: xml line 1 and broken
Premature end of data in tag broken line 1
21
Briganti

Je pense que c'est une meilleure façon

$use_errors = libxml_use_internal_errors(true);
$xml = simplexml_load_file($url);
if (false === $xml) {
  // throw new Exception("Cannot load xml source.\n");
}
libxml_clear_errors();
libxml_use_internal_errors($use_errors);

plus d'informations: http://php.net/manual/en/function.libxml-use-internal-errors.php

46
Alex

Si vous regardez le manuel, il y a un paramètre d'options:

SimpleXMLElement simplexml_load_file ( string $filename [, string $class_name = "SimpleXMLElement" [, int $options = 0 [, string $ns = "" [, bool $is_prefix = false ]]]] )

La liste des options est disponible: http://www.php.net/manual/en/libxml.constants.php

C'est la bonne façon de supprimer les avertissements en analysant les avertissements:

$xml = simplexml_load_file('file.xml', 'SimpleXMLElement', LIBXML_NOWARNING);
8
Mārtiņš Briedis

C'est une vieille question, mais toujours d'actualité.

La façon correcte de gérer les exceptions lors de l'utilisation de oop SimpleXMLElment est la même.

libxml_use_internal_errors(TRUE); // this turns off spitting errors on your screen
try {
  $xml = new SimpleXMLElement($xmlStringOfData);
} catch (Exception $e) {
  // Do something with the exception, or ignore it.
}
5
Halfstop

Mon petit code:

try {
    libxml_use_internal_errors(TRUE);
    $xml = new SimpleXMLElement($xmlString);
    echo '<pre>'.htmlspecialchars($xml->asXML()).'</pre>';
} catch (Exception $e) {
    echo 'Caught exception: ' . $e->getMessage() . chr(10);
    echo 'Failed loading XML: ' . chr(10);
    foreach(libxml_get_errors() as $error) {
        echo '- ' . $error->message;
    }
}

Exemple de résultat:

Caught exception: String could not be parsed as XML
Failed loading XML: 
- Opening and ending tag mismatch: Body line 3 and Bod-y
2
Robert G.