使用PHP获取DOM元素

我很难理解如何在PHP中使用DOMElement对象.我找到了这段代码,但我不确定它是否适用于我:

$dom = new DOMDocument();
$dom->loadHTML("index.php");

$div = $dom->getElementsByTagName('div');
foreach ($div->attributes as $attr) {
     $name = $attr->nodeName;
     $value = $attr->nodeValue;
     echo "Attribute '$name' :: '$value'<br />";
}

基本上我需要的是在DOM中搜索具有特定id的元素,之后我需要提取一个非标准属性(即我用JS组成的一个属性),所以我可以看到它的值.原因是我需要$_GET中的一个部分和基于重定向的HTML中的一个部分.如果有人可以解释我如何将DOMDocument用于此目的,那将会有所帮助.我真的在努力了解正在发生的事情以及如何正确实施它,因为我显然做得不对.

编辑(根据评论,我在哪里):

这是我的代码行4-26供参考:

<div id="column_profile">
    <?php
        require_once($_SERVER["DOCUMENT_ROOT"] . "/peripheral/profile.php");            
        $searchResults = isset($_GET["s"]) ? performSearch($_GET["s"]) : "";

        $dom = new DOMDocument();
        $dom->load("index.php");

        $divs = $dom->getElementsByTagName('div');
        foreach ($divs as $div) {
            foreach ($div->attributes as $attr) {
              $name = $attr->nodeName;
              $value = $attr->nodeValue;
              echo "Attribute '$name' :: '$value'<br />";
            }
        }
        $div = $dom->getElementById('currentLocation');
        $attr = $div->getAttribute('srckey');   
        echo "<h1>{$attr}</a>";
    ?>
</div>

<div id="column_main">

这是我收到的错误消息:

Warning: DOMDocument::load() [domdocument.load]: Extra content at the end of the document in ../public_html/index.php, line: 26 in ../public_html/index.php on line 10

Fatal error: Call to a member function getAttribute() on a non-object in ../public_html/index.php on line 21

解决方法:

getElementsByTagName返回一个元素列表,因此首先需要遍历元素,然后遍历它们的属性.

$divs = $dom->getElementsByTagName('div');
foreach ($divs as $div) {
    foreach ($div->attributes as $attr) {
      $name = $attr->nodeName;
      $value = $attr->nodeValue;
      echo "Attribute '$name' :: '$value'<br />";
    }
}

在您的情况下,您说您需要一个特定的ID.这些应该是唯一的,所以要做到这一点,你可以使用(注意getElementById可能不起作用,除非你先调用$dom-> validate()):

$div = $dom->getElementById('divID');

然后获取您的属性:

$attr = $div->getAttribute('customAttr');

编辑:$dom-> loadHTML只读取文件的内容,它不执行它们. index.php不会以这种方式运行.您可能需要执行以下操作:

$dom->loadHTML(file_get_contents('http://localhost/index.php'))
上一篇:Mysql – 帮我改变这个搜索查询以获得所需的结果


下一篇:Python 读取照片的信息:拍摄时间、拍摄设备、经纬度等,以及根据经纬度通过百度地图API获取位置