$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个单词)时,它会在一段时间后停止工作。循环或任何地方有问题吗?
答案 0 :(得分:1)
默认最长执行时间为30秒。
您可以使用php文件检查实际设置
<?
phpinfo();
?>
如果可能,请更改您的php.ini设置或使用php cli。但请注意服务器整体性能问题。