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

php守护进程

时间:2016-07-13 13:44:33      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

<?php

set_time_limit(0);
ini_set("memory_limit", "256M");
$pid = $_REQUEST[‘pid‘]; //可以启动多个进程

$pid_file = "{$pid}.pid"; //锁文件
$ctrl_file = "{$pid}.ctrl"; //控制文件

$idle_interval = 10000000; //空闲等待时间,微秒

//已有进程正在运行
if (file_exists($pid_file)) {
    //控制文件存在或者锁文件5分钟未被访问
    $stop = file_exists($ctrl_file);
    clearstatcache();
    if ($stop || ($_SERVER[‘REQUEST_TIME‘] - fileatime($pid_file) >= 300)) {
        if ($pid = file_get_contents($pid_file)) {
            if ($stop) {
                @unlink($ctrl_file);
            }
            @unlink($pid_file);
            shell_exec("ps -ef | grep ‘m=async&p=stat‘ | grep ‘{$pid}‘ | awk ‘{print \$2}‘ | xargs --no-run-if-empty kill"); //防止误杀
            $logStr = date(‘Ymd H:i:s‘) . ($stop ? " Killed by control file: $pid.ctrl" : " Process has gone away: $pid.pid");
            fc::debug($logStr, ‘Async_Call‘);
        }
    }
}else { //第一次运行
    if (!file_put_contents($pid_file, getmypid())) {
        die("Can not create PID file: {$pid_file}");
    }
    $starttime = time();
    
    while (1) {
        if(time() - $starttime >= 3600){ //每一小时重启一下
            break;
        }
        
        touch($pid_file); //用于记录最后运行时间
        // some code
        
    }
}

 

php守护进程

标签:

原文地址:http://www.cnblogs.com/justlikeheaven/p/5666313.html

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