0

我正在尝试从代码块中收集所有 H1 标签。我试图在一个类中使用它并且我不断收到错误并且我不确定这是因为插入到类中还是因为我是 DOM 编码的新手而我编码它是错误的。

错误:致命错误:调用未定义的方法 DOMDocument::getElementByTagName() 此错误指的是:

$head1 = $this->doc->getElementByTagName('H1');

文件调用类

<?php
include('../includes/configuration.php');
include('../functions/class.php');

$reports=new Functions();

$sql = mysql_query("SELECT * FROM user_urls LIMIT 1") or die(mysql_error());  
if (mysql_num_rows($sql) > 0){
    $recc = mysql_fetch_array($sql);
    $id=$recc['id'];
    $content=$recc['content'];  

    $reports->content=$content;

    $test=$reports->collectHeadings();
    print_r($test);
}
?>

类文件

class Functions{
var $content;
var $doc;

public function collectHeadings(){
    $this->loadContent();
    $head1 = $this->doc->getElementByTagName('H1');
    return $head1;
}

public function loadContent(){
    $this->doc = new DOMDocument();
    $this->doc->loadHTML($this->content);
}
}
4

1 回答 1

3

好吧,原来你拼写为 getElementByTagName,而该方法实际上是 getElementsByTagName。

于 2012-10-11T21:07:29.033 回答