正如标题中描述的那样,目前我的代码是:
<?php
$url = "remotesite.com/page1.html";
$html = file_get_contents($url);
$doc = new DOMDocument(); // create DOMDocument
libxml_use_internal_errors(true);
$doc->loadHTML($html); // load HTML you can add $html
$elements = $doc->getElementsByTagName('div');
?>
我的编码技能非常基础,所以此时我迷路了,不知道如何只显示具有 id 的 divid=mydiv