0

我正在使用一个名为 Simple HTML DOM 的库

其中一种方法是将 url 加载到 DOM 对象中:

function load_file()
{
    $args = func_get_args();
    $this->load(call_user_func_array('file_get_contents', $args), true);
    // Throw an error if we can't properly load the dom.
    if (($error=error_get_last())!==null) {
        $this->clear();
        return false;
    }
}

为了测试错误处理,我创建了以下代码:

include_once 'simple_html_dom.php';
function getSimpleHtmlDomLoaded($url)
{
  $html = false;
  $count = 0;
  while ($html === false && ($count < 10)) {
    $html = new simple_html_dom();
    $html->load_file($url);
    if ($html === false) {
      echo "Error loading url!\n";
      sleep(5);
      $count++;
    }
  }
  return $html;
}

$url = "inexistent.html";
getSimpleHtmlDomLoaded($url);

这段代码背后的想法是,如果 url 无法加载,则再次尝试,如果 10 次尝试仍然失败,它应该返回 false。

但是,如果 url 不存在,load_file 方法似乎永远不会返回 false。

相反,我收到以下警告消息:

PHP 警告:file_get_contents(inexisten.html):无法打开流

知道如何解决这个问题吗?

注意:最好我想避免入侵图书馆。

4

2 回答 2

2

更改以下代码:

$html->load_file($url);
if ($html === false) {

对于这个:

$ret = $html->load_file($url);
if ($ret === false) {

因为您正在检查对象实例而不是方法的返回值load_file()

于 2012-09-24T11:34:40.780 回答
0

通过在方法调用之前添加 @ 符号,任何警告都会被抑制。如果您使用它,请务必像现在一样自己检查错误,并确保没有其他方法可以确保不会弹出警告和/或错误。

您应该检查由 load() 方法保存在某处的实际数据,如果它等于 FALSE 而不是对象实例 $html。

于 2012-09-24T11:23:50.857 回答