php循环(for)发送get请求
<?php
for ($x=0; $x<=287; $x++) {
$url='http://baidu.com/';
$html = file_get_contents($url);
echo $html;
}
?>INFO
<?php
for ($x=0; $x<=287; $x++) {
$url='http://baidu.com/';
$html = file_get_contents($url);
echo $html;
}
?>