This article mainly introduces the usage of ThinkPHP Process counting class, analyzes the definition of Process class and the implementation skills of Process counting in detail in the form of instances, and has some reference value, for more information about ThinkPHP Process count, see the following example. Share it with you for your reference. The details are as follows:
There is a requirement in the project: because a background task occupies a relatively high bandwidth, the number of processes must be limited. It took some time to write the class. The current version features are relatively simple.
The Process. class. php file is as follows:
<?php/** * Process * * @package * @version $id$ * @copyright 2005-2011 SUCOP.COM * @author Dijia Huang
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt} */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; }}?>
Call method:
<? Phpclass IndexAction extends Action {// initialization module public function _ initialize () {parent: _ initialize (); import ('@. util. process '); Process: start ();} function _ destruct () {Process: destory ();} public function index () {C ('index _ INDEX', 3); // dynamically change the limit. the default value is 10 if (Process: isOvertop () echo "exceeds the limit "; else "not exceeding the limit" ;}}?>
I hope this article will help you design php programs based on the ThinkPHP framework.