您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这期内容当中小编将会给大家带来有关怎么在ThinkPHP中使用Process进程计数类,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
Process.class.php文件如下:
<?php class Process { const PROCESS_KEY = '~Process'; const PROCESS_MAXNUM = 10; /** * start * * @static * @access public * @return void */ static public function start(){ $list = self::__getList(); $name = self::__getName(); if(!isset($list[$name])){ $list[$name] = array('count'=>1, 'lasttime'=>time()); }else{ if((time()-$list[$name]['time']) > 600){ $list[$name]['count'] = 1; }else{ $list[$name]['count'] += 1; } } self::__setList($list); } /** * destory * * @static * @access public * @return void */ static public function destory(){ $list = self::__getList(); $name = self::__getName(); if(isset($list[$name])){ if($list[$name]['count'] <= 1){ unset($list[$name]); }else{ $list[$name]['count'] -= 1; $list[$name]['lasttime'] = time(); } self::__setList($list); } } /** * getCount * * @static * @access public * @return void */ static public function getCount(){ $list = self::__getList(); $name = self::__getName(); return $list[$name]['count']; } /** * getMaxnum * * @static * @access public * @return void */ static public function getMaxnum(){ $name = self::__getName(); return C($name) ? C($name) : self::PROCESS_MAXNUM; } /** * getName * * @static * @access public * @return void */ static public function getName(){ return self::__getName(); } /** * isOvertop * * @static * @access public * @return void */ static public function isOvertop(){ return (self::getCount() > self::getMaxnum()); } /** * getLasttime * * @static * @access public * @return void */ static public function getLasttime(){ $list = self::__getList(); $name = self::__getName(); return $list[$name]['lasttime']; } /** * clear * * @static * @access public * @return void */ static public function clear(){ F(self::PROCESS_KEY, null); } /** * __setList * * @param mixed $list * @static * @access private * @return void */ static private function __setList($list=null){ if(!is_array($list) || empty($list)) F(self::PROCESS_KEY, null); else F(self::PROCESS_KEY, $list); } /** * __getList * * @static * @access private * @return void */ static private function __getList(){ $list = F(self::PROCESS_KEY); if(!is_array($list)) return array(); else return $list; } /** * __getName * * @static * @access private * @return void */ static private function __getName(){ return (defined('GROUP_NAME') ? GROUP_NAME.'_' : '') . MODULE_NAME . '_' . ACTION_NAME; } } ?>
调用方法:
<?php class IndexAction extends Action { // 初始化模块 public function _initialize(){ parent::_initialize(); import('@.Util.Process'); Process::start(); } function __destruct(){ Process :: destory(); } public function index(){ C('Index_index', 3); // 动态更改限制数, 默认为10 if(Process::isOvertop()) echo "超出限制"; else "未超出限制"; } } ?>
上述就是小编为大家分享的怎么在ThinkPHP中使用Process进程计数类了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。