我使用curl 并将网站下载到我的代码
这是我的代码:
$data = get_web_page('http://localhost/www/site.html');
$scraped_page = get_web_page('http://localhost/www/site.html');
$scraped_data = scrape_between($data['content'], "<td class=\"category last\"><a href=\"", "\">");
echo $scraped_data;
知道并且我知道这个标签之间的所有价值:
<td class="category last"><a href="
值
">
我在这个页面中有20个链接 我如何采取所有链接 并在我的网站上显示
感谢