douwei2825 2015-07-19 15:07
浏览 232
已采纳

如何在PHP中使用DomDocument或XPath获取HTML文档的确切结构?

I have an HTML document for example:

<!DOCTYPE html>
<html>
<head>
    <title>Webpage</title>
</head>
<body>
<div class="content">
    <div>
        <p>Paragraph</p>
    </div>
    <div>
        <a href="someurl">This is an anchor</a>
    </div>
    <p>This is a paragraph inside a div</p>
</div>
</body>
</html>

I want to grab exact structure of the div having class of content.

Using DomDocument in PHP if I fetch the div using the getElementsByTagName() method, I am getting this:

    DOMElement Object
  (
    [tagName] => div
    [schemaTypeInfo] => 
    [nodeName] => div
    [nodeValue] => 

        Paragraph


        This is an anchor

    This is a paragraph inside a div

    [nodeType] => 1
    [parentNode] => (object value omitted)
    [childNodes] => (object value omitted)
    [firstChild] => (object value omitted)
    [lastChild] => (object value omitted)
    [previousSibling] => (object value omitted)
    [nextSibling] => (object value omitted)
    [attributes] => (object value omitted)
    [ownerDocument] => (object value omitted)
    [namespaceURI] => 
    [prefix] => 
    [localName] => div
    [baseURI] => 
    [textContent] => 

        Paragraph


        This is an anchor

    This is a paragraph inside a div

)

How can I get this instead:

<div class="content">
    <div>
        <p>Paragraph</p>
    </div>
    <div>
        <a href="someurl">This is an anchor</a>
    </div>
    <p>This is a paragraph inside a div</p>
</div>

Is there any way of doing this?

  • 写回答

1条回答 默认 最新

  • doujue6196 2015-07-19 15:31
    关注

    Suppose, $str contains the HTML

    // Create DomDocument
    $doc = new DomDocument();
    $doc->loadHTML($str);
    // Find needed div
    $xpath = new DOMXpath($doc);
    $elements = $xpath->query('//div[@class = "content"]');
    // What to do if divs more that one?
    if ($elements->length != 1) die("some divs in the document have class 'content'");
    // Take first
    $div = $elements->item(0);
    // Echo content of node $div
    echo $doc->saveHTML($div);
    

    result

    <div class="content">
        <div>
            <p>Paragraph</p>
        </div>
        <div>
            <a href="someurl">This is an anchor</a>
        </div>
        <p>This is a paragraph inside a div</p>
    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里