I have a set of urls on the form of

http://www.domain.com/directory/page.php?id=xxxx

How do I iterate through the different ids and save the resulting pages?

有帮助吗?

解决方案

for($i=1;$i<100;$i++)
{
   $results[]=file_get_contents("http://www.domain.com/directory/page.php?id=$i");
}
print_r($results);

Or if you already have the ids in any array you could loop over them

foreach($arrayOfIDS as $id)
{
   $results[]=file_get_contents("http://www.domain.com/directory/page.php?id=$id");
}
print_r($results);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top