从另一个页面获取div的元素(PHP)

时间:2011-02-18 19:21:03

标签: php string html file-get-contents

所以我有第一页:

<div id="div1">This is text one</div>

<div id="div2">This is text two</div>

<div id="div3">This is text three</div>

现在我想得到div的元素,它会返回This is text one,我该怎么做?

2 个答案:

答案 0 :(得分:26)

您可以在PHP中使用DOMDocument:

<?php

$doc = new DomDocument;

// We need to validate our document before refering to the id
$doc->validateOnParse = true;
$doc->loadHtml(file_get_contents('http://google.com/bla.php'));

var_dump($doc->getElementById('div1'));

?>

答案 1 :(得分:1)

$string = file_get_contents($url);
if (preg_match('/<div id="div1">([^<]*)<\/div>/', $string, $matches) > 0) {
    echo $matches[1]; //This is text one
}