0

我有一个包含 5000 行 URL 的 txt 文件。我想要做的是打开每个 url 以提取每个 url(第一个 url 有)。我的问题是,脚本的第一行打开 URL 并告诉我有多少链接没有问题。但是对于文件中的其余 URL 没有显示任何内容......数组显示如下:

Array
(
)
Array
(
)

我的代码:

$homepage = file_get_contents('***mytxt file****');

$pathComponents = explode(",", trim($homepage)); //line breaker

//echo "<pre>";print_r($pathComponents);echo "</pre>";

$count_nlines = count($pathComponents);

for ($i=0;$i<3;$i++) {

$request_url = $pathComponents[$i];
//echo $request_url . "<br>";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);    // The url to get links from
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // We want to get the respone
$result = curl_exec($ch);

$regex='|<a.*?href="(.*?)"|';
preg_match_all($regex,$result,$parts);
$links=$parts[1];

echo "<pre>";print_r($links);echo "</pre>";

curl_close($ch);
}

有任何想法吗?!

4

1 回答 1

0

It looks like you're looping through the wrong thing. Try changing this:

for ($i=0;$i<3;$i++) {

To this:

for ($i = 0; $i <= count($pathComponents); $i++)
于 2013-08-16T16:57:51.493 回答