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

前端之家收集整理的这篇文章主要介绍了从另一个页面(PHP)获取div的元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我有第一页:
<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的元素,它会返回这是文本,我该怎么做?

您可以在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'));

?>
原文链接:https://www.f2er.com/php/131734.html

猜你在找的PHP相关文章