3

所以我从 XML 文件中获取一些信息,如下所示:

$url = "http://myurl.blah";
$xml = simplexml_load_file($url);

除了有时 XML 文件是空的,我需要代码优雅地失败,但我似乎无法弄清楚如何捕获 PHP 错误。我试过这个:

if(isset(simplexml_load_file($url)));
{
    $xml = simplexml_load_file($url);
    /*rest of code using $xml*/
}
else {
    echo "No info avilable.";
}

但它不起作用。我猜你不能那样使用 ISSET 。任何人都知道如何捕捉错误?

4

4 回答 4

11
$xml = file_get_contents("http://myurl.blah");
if (trim($xml) == '') {
    die('No content');
}

$xml = simplexml_load_string($xml);

或者,可能效率更高一些,但不一定推荐,因为它可以消除错误:

$xml = @simplexml_load_file($url);
if (!$xml) {
    die('error');
}
于 2012-07-24T15:12:03.287 回答
1

不要isset在这里使用。

// Shutdown errors (I know it's bad)
$xml = @simplexml_load_file($url);

// Check you have fetch a response
if (false !== $xml); {
    //rest of code using $xml
} else {
    echo "No info avilable.";
}
于 2012-07-24T15:11:16.090 回答
1
if (($xml = simplexml_load_file($url)) !== false) {
  // Everything is OK. Use $xml object.
} else {
  // Something has gone wrong!
}
于 2012-07-24T15:12:19.917 回答
0

来自 PHP 手册,错误处理(点击这里):

var_dump(libxml_use_internal_errors(true));

// load the document
$doc = new DOMDocument;

if (!$doc->load('file.xml')) {
    foreach (libxml_get_errors() as $error) {
        // handle errors here
    }

    libxml_clear_errors();
}
于 2012-07-24T15:20:39.633 回答