我在构建刮板时遇到了一些问题。
在代码中,我需要找到
<dt class="sc-ellipsis">Categorie</dt><dd>Tweedehands</dd>
我需要找到Tweedehands,但仅在dt Categorie之后找到
我的代码是
$link = 'https://www.autoscout24.be'.$autolink;
$html = file_get_contents($link);
preg_match("'<dt class=\"sc-ellipsis\">Categorie</dt><dd>(.*?)</dd>'si", $html, $match);
我也一直在尝试使用SimpleDomHtml,但是我不知道如何工作。
预先感谢;-)