dongyan5141 2013-07-18 04:20
浏览 46
已采纳

DOMDOCUMENT | PHP:将getElementById输出保存到新的HTML文件中

I'm trying to save the result of getElementById using PHP.

The code I have:

<?php
$doc = new DOMDocument();
$doc->validateOnParse = true;
@$doc->loadHTMLfile('test.htm');
$div = $doc->getElementById('storytext');
echo $doc->saveHTML($div);
?>

This displays the relevant text, I now want to save that to a new file, I have tried using save(), saveHTMLfile() and file_put_contents(), none of those work because they only save strings and I cannot turn $div into a string, so I'm stuck.

If I just save the entire thing:

$doc->saveHTMLfile('name.ext');

It works but it saves everything, not just the part that I need.

I'm a complete DOM noob so I may be missing something very simple but I can't really find much about this through my searches.

  • 写回答

1条回答 默认 最新

  • doudang8824 2013-07-18 04:23
    关注
    function getInnerHtml( $node ) { 
        $innerHTML= ''; 
        $children = $node->childNodes; 
        foreach ($children as $child) { 
            $innerHTML .= $child->ownerDocument->saveXML( $child ); 
        } 
    
        return $innerHTML; 
    }
    
    $html = getInnerHtml($div);
    file_put_contents("name.ext", $html);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部