$listget=file_get_contents('http://mysite.com/list');
$list=explode('target="_',$listget);
$count=count($list);
$i='2';
for ($i=2 ; $i <= ($count-4) ; $i++) {
//function or statement here
if($my_statement===false){
show cancel
else{
show second matter
if($my_statement===false)
{//nothing is here
}
else{
show success with data}
}
}
else{
show 1st matter
if($my_statement===false)
{
//nothing is here}
else{
show success with data }
}
このコードはうまく機能しています。しかし、リストの量が非常に多い場合 (つまり、100 語以上)、しばらくすると機能しなくなります。ループの問題ですか、それともどこにありますか?