PHP简单的HTML DOM解析器 - 错误

时间:2015-03-29 02:12:07

标签: parsing dom

我有这段代码:

<?php
header('Content-type: text/plain; charset=utf-8');

include('simple_html_dom.php');
$html = file_get_html('http://test.com/');
$class = $html->find("thisisatest", 0)->innertext;

echo $class;
?>

错误页面:

<br />
<b>Notice</b>:  Trying to get property of non-object in <b>C:\xamp\htdocs\test\test.php</b> on line <b>6</b><br />

为什么有时候一切正常,有时我会收到错误?

1 个答案:

答案 0 :(得分:0)

打印html以查看您获得的内容可能很有用。该网址将被重定向。使用curl来获得更一致的结果并进行错误检查可能会有帮助