1

这段代码有以下错误,我希望它从 HTML 中抓取一个选定的对象,而不是整个文件。

.php 文件:

<?php 
include_once('simple_html_dom.php');

$target = "test.html";
$html = file_get_contents($target);

foreach($html->find('div.article') as $element) 
       echo $element->find('h1');

?> 

测试.html:

<html>
<head>
</head>
<body>
<div class="article">
<h1>Header</h1>
<p>Paragraph</p>
</div>
</body>
</html>

输出:

Fatal error: Call to a member function find() on a non-object in C:\xampp\htdocs\index.php on line 7
4

1 回答 1

0

file_get_contents() 返回一个字符串对象。

字符串对象没有 find 方法。请参阅http://php.net/manual/en/book.strings.php

改用这个

file_get_html()

<?php 
include_once('simple_html_dom.php');

$target = "test.html";
$html = file_get_html($target);

foreach($html->find('div.article') as $element) 
       echo $element->find('h1');

?> 
于 2012-11-30T15:55:24.593 回答