我使用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
命令创建另一个变量以从这个新网址中提取数据?