-3

我想要 PHP 字符串变量的所有 url。

    $html = '<body>...<a href="foo-1">more</a>...<a href="foo-2">more</a>...<a href="foo-3">more</a>...<a href="foo-4">more</a></body>';
    // ?

一直以来“更多”这个“a”元素的内容。我需要:数组('foo-1'、'foo-2'、'foo-3'、'foo-4');

4

2 回答 2

1

For web scraping in PHP, I would suggest using Goutte.

It's a dedicated PHP screen scraping component. Does all the hard work for you.

于 2012-10-07T19:15:38.253 回答
0

你的问题不是很具体

您可以使用simplehtmldom抓取网站

文档很简单

于 2012-10-07T19:10:52.707 回答