我正在使用 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>";
}
现在我需要从这个特定 url 中包含的 url 中提取其他内容$minisito[0] -> href
如何使用file_get_html
命令创建另一个变量来从这个新的 url 中提取数据?