首先,我的PHP技能并不好。我正在尝试列出所有类似的链接:
<a href="..." class="bokstav">...</a>
来自网站:
file_get_contents('.....');
如何通过preg_match等找到这些链接?
/ TB
答案 0 :(得分:3)
使用phpQuery或QueryPath:
更容易$html = file_get_contents($url);
$qp = qp($html);
foreach ($qp->find("a.bokstav") as $a) {
print $a->attr("href");
}
如果您想使用preg_match进行尝试,请查看http://www.regular-expressions.info/examples.html或https://stackoverflow.com/questions/89718/is-there-anything-like-regexbuddy-in-the-open-source-world以开始使用。