$content = file_get_contents(http://www.domain.com/page.html);
$dom = new DOMDocument();
if (!@$dom->loadHTML($content)) die ("Couldn't load file?");
$title = $dom->getElementById("cssid");
$data['heading'] = $title->nodeValue; // this works fine
我希望能够选择p
某个 id 内的所有标签。使用 Jquery Ii 会做类似的事情 $('#mycssid p');
我将如何使用 DOMDocument 类来做到这一点