I am using the following code:

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:$password@twitter.com/account/rate_limit_status.xml");
$left = $xml->{"remaining-hits"};
$total = $xml->{"hourly-limit"};
return $left."/".$total;
}

and getting these errors when the stream cannot connect:

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://...@twitter.com/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"

How can I handle these errors so I can display a user friendly message instead of what is shown above?

link|improve this question

feedback

4 Answers

I thinks this is a better way

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

more info: http://php.net/manual/en/function.libxml-use-internal-errors.php

link|improve this answer
Only one that answers the question. Use it with libxml_get_errors() or libxml_get_last_error() to get the error message(s). – Znarkus Apr 7 '11 at 17:14
feedback

The documentation says that in the case of an error, simplexml_load_file returns FALSE. So, you can use the "shut-up" operator (@) in combination with a conditional statement:

if (@simplexml_load_file($file))
{
    // continue
}
else 
{
    echo 'Error!';
}
link|improve this answer
Not the shut-up not the shut up, please ! – mere-teresa Aug 20 '09 at 16:21
so something like this? function GetTwitterAvatar($username){ if(@simplexml_load_file("twitter.com/users/".$username.".xml";)){ $xml = simplexml_load_file("twitter.com/users/".$username.".xml";); $imgurl = $xml->profile_image_url; return $imgurl; } else { return 'error'; } } – GrapeCamel Aug 20 '09 at 16:23
You can do it without calling simplexml_load_file twice: $xml = @simplexml_load_file("..."); if ($xml) { ... } else { return 'Error'; } – Ignas R Aug 20 '09 at 16:26
1  
mere-teresa, but he needs to suppress the warning here... Of course, you can also use the display_errors setting or convert errors to exceptions and then use try/catch, but this is much simpler... – Ignas R Aug 20 '09 at 16:28
-1 for advising the shut up operator – greg0ire Feb 21 at 9:04
feedback

I've found a nice example in the php documentation.

So the code is:

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

And the output, as we/I expected:

Failed loading 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
link|improve this answer
feedback

if (simplexml_load_file($file) !== false) { // continue } else { echo 'Error!'; }

And Twitter is down, maybe ?

link|improve this answer
Twitter is down is down! – Znarkus Apr 7 '11 at 17:07
-1, you do not really handle errors. – greg0ire Feb 21 at 9:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.