<?php /** * Cron监控程序 * * @copyright(c)2011,weibo All rights reserved. * @author 王勇 <wangyong1@staff.sina.com.cn> * @version 3.0 - 2011-11-25 * @package crontab */ include_once dirname(__FILE__).'/base/cronBase.php'; include_once dirname(__FILE__).'/base/dealBase.php'; class MonCron extends cronBase { public function setPara() { $this->process = $GLOBALS['DAEMON_LIST']; $this->procnumlist = $GLOBALS['DAEMON_NUMLIMIT']; $this->maxtimelist = $GLOBALS['DAEMON_MAXTIME']; return ; } } new MonCron;