php采集代码循环问题
发布网友
发布时间:2023-01-03 17:03
我来回答
共1个回答
热心网友
时间:2023-10-12 02:02
header("Content-type: text/html; charset=gb2312");
$url = "http://top.qidian.com/Book/TopDetail.aspx?TopType=6"; //目标站
$fp = @fopen($url, "r") or die("超时");
$fcontents = file_get_contents($url);
preg_match_all("/ <a target=\"_blank\" href=\"(http:\/\/www.qidian.com\/Book\/(.*?)\.aspx)\"/is", $fcontents, $regs);
foreach($regs[1] as $key => $item)
{
echo "<a href=\"{$item}\">{$item}</a>", "<br/>";
}
die();
这样子修改就能得到你想要的结果了。