当前位置:Gxlcms > PHP教程 > php运行超时采取分步执行的简单方法

php运行超时采取分步执行的简单方法

时间:2021-07-01 10:21:17 帮助过:12人阅读

  1. $stid = isset($_GET['stid'])?$_GET['stid']:0;

  2. $endid = $stid + 100;
  3. $maxid = 10000;

  4. function dosomething(){

  5. //要时间比较多的操作
  6. ……
  7. }
  8. $sql_string=”select * from `table` where id>’$stid’ and id<=’$endid’ order by id”;
  9. $datas = getdata_bysql($sql_string);
  10. foreach($datas as $data){
  11. //处理数据
  12. …..
  13. echo $id.” 处理完成.
    ”;
  14. if($id>=$maxid){exit;}
  15. }
  16. if($stid<=$maxid){
  17. $stid = $stid + 100;
  18. $url=”action.php?stid=$stid”;
  19. echo $url;
  20. echo ‘’;
  21. }
  22. ?>

其中的dosomething()是一个耗时操作。这里我们通过限制id范围来减少运行时间,运行完后通过javascript的跳转来自动运行下一步。 这样,每处理一批数据就可以知道结果,如果中断也知道问题出在那里。

人气教程排行