码迷,mamicode.com
首页 > Web开发 > 详细

PHP 后台定时循环刷新某个页面 屏蔽apache意外停止

时间:2014-04-30 20:07:28      阅读:520      评论:0      收藏:0      [点我收藏+]

标签:com   http   blog   style   class   div   img   code   java   c   log   

PHP 后台定时循环刷新某个页面

如果间隔时间过长的话  会出现apache自动停止的现象。出现的原因则是设置了

<IfModule mpm_winnt_module>
ThreadsPerChild 450
MaxConnectionsPerChild 3000
</IfModule>

错误日志报错

[mpm_winnt:notice] [pid 126236:tid 316] AH00362: Child: Waiting 270 more seconds for 3 worker threads to finish.

[mpm_winnt:notice] [pid 126236:tid 316] AH00362: Child: Waiting 240 more seconds for 3 worker threads to finish.

.......

[pid 126236:tid 316] AH00363: Child: Terminating 2 threads that failed to exit.

[pid 126236:tid 316] AH00364: Child: All worker threads have exited.

然后直接停止了进程 导致循环结束

bubuko.com,布布扣
//此文件保存在为 sleep.php

//定义一个自动刷新的时间
$time = 500;
//定义一个每次请求的最大运行时间
$time_limit = 200;

ignore_user_abort(True);
$rest_time=intval($_GET["time"]);

//本PHP访问的URL
$base_url=‘http://domain.com/sleep.php‘;

//自动刷新的页面
$get_url=‘http://www.baidu.com‘;


if($rest_time==0)$rest_time=$time;

//延长PHP脚本执行的时间
set_time_limit(3601);

//加载HttpClient类
require_once ‘HttpClient.php‘;

//如果时间比较长 需要多次的请求 防止被意外关闭
if($rest_time>$time_limit){
    //延时
    sleep($time_limit);
    //请求本url
    $rest_time=$rest_time-$time_limit;
    HttpClient::quickGet($base_url.‘?time=‘$rest_time);
    exit();
}else{
    //延时
    sleep($rest_time);
    HttpClient::quickGet($get_url);
    HttpClient::quickGet($base_url);
}
bubuko.com,布布扣

初次写 欢迎指正

PHP 后台定时循环刷新某个页面 屏蔽apache意外停止,布布扣,bubuko.com

PHP 后台定时循环刷新某个页面 屏蔽apache意外停止

标签:com   http   blog   style   class   div   img   code   java   c   log   

原文地址:http://www.cnblogs.com/osfipin/p/3698986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!