使用Simple HTML DOM Parser从变量中检索DOM?

时间:2018-01-18 20:07:23

标签: php dom simple-html-dom domparser simpledom

我使用Simple HTML DOM Parser使用此代码从网站检索信息:

$html = file_get_html("http://www.example.com/"]);
$table = $html->find("div[class=table]");

foreach ( $table as $tabella ) {
    $title = $tabella->find (".elementTitle");
    echo "<h2>" . $title[0] -> plaintext . "</h2>"; 
    $minisito = $tabella->find ("h1[class=elementTitle] a");
    echo "<p>" . $minisito[0] -> href . "</p>";     
}

现在我需要从此特定网址$minisito[0] -> href

中包含的网址中提取其他内容

如何使用file_get_html命令创建另一个变量以从这个新网址中提取数据?

0 个答案:

没有答案