<?php
$url = 'http://www.url.in/';
$html = file_get_contents( $url);
libxml_use_internal_errors( true);
$doc = new DOMDocument;
$doc->loadHTML($html);
foreach ($doc->getElementsByTagName('div') as $node) {
$xpath = new DOMXpath($doc);
$xpath->query('//div[contains(@class, "post_list_medium_widget")]');
echo var_dump($node);
}
我需要提取以下信息:
我如何才能在PHP中执行此操作。我写过这样的东西。
{{1}}