Pregunta

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?

¿Fue útil?

Solución

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);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top