如何仅使用file_get_contents显示内容

时间:2013-08-06 21:02:22

标签: php file-get-contents

我有一个代码从数据库中抓取搜索的整个结果页面。我只想抓取并显示body标签中的内容,以便我可以自己操作结果页面的其余部分。请指教。感谢。

1 个答案:

答案 0 :(得分:6)

您可以使用DOMDocument提取所需的网页部分。

$html = file_get_contents("some resource");
libxml_use_internal_errors(true); //Prevents Warnings, remove if desired
$dom = new DOMDocument();
$dom->loadHTML($html);
$body = "";
foreach($dom->getElementsByTagName("body")->item(0)->childNodes as $child) {
    $body .= $dom->saveHTML($child);
}
echo $body;