分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 运营维护

PHP队列类

发布时间:2023-09-06 02:28责任编辑:赖小花关键词:PHP
/** * Created by PhpStorm. * User: LAMP—Q哥 * Date: 2017/8/3 * Time: 12:58 */class Queue { ???private ???$_queue = []; ???protected ?$cache ?= null; ???protected ?$queuecachename; ???/** ????* 构造方法 ????* Queue constructor. ????* @param $queuename ????*/ ???public function __construct($queuename ) { ???????$this->cache = & Cache::instance(); ???????$this->queuecachename = ‘queue_‘.$queuename; ???????$result = $this->cache->get($this->queuecachename); ???????if(is_array($result)) { ???????????$this->_queue = $result; ???????} ???} ???/** ????* 将一个单元放入队列末尾 ????* @param $value ????* @return $this ????*/ ???public function enQueue($value) { ???????$this->_queue[]=$value; ???????$this->cache->set($this->queuecachename,$this->_queue); ???????return $this; ???} ???/** ????* 将队列开头的一个或多个单元移除 ????* @param int $num ????* @return array ????*/ ???public function sliceQueue($num = 1) { ???????if(count($this->_queue)<$num) { ???????????$num = count($this->_queue); ???????} ???????$output = array_slice($this->_queue,0,$num); ???????$this->cache->set($this->queuecachename,$this->_queue); ???????return $output; ???} ???/** ????* 将队列开头的单元移出队列 ????* @return mixed ????*/ ???public function deQueue() { ???????$entry = array_shift($this->_queue); ???????$this->cache->set($this->queuecachename,$this->_queue); ???????return $entry; ???} ???/** ????* 获取队列的长度 ????* @return int ????*/ ???public function size() { ???????return count($this->_queue); ???} ???/** ????* 获取队列中的第一个 ????* @return mixed ????*/ ???public function peek() { ???????return $this->_queue[0]; ???} ???/** ????* 返回队列中的一个或者多个单元 ????* @param $num ????* @return array ????*/ ???public function peeks($num){ ???????if(count($this->_queue)<$num) { ???????????$num = count($this->_queue); ???????} ???????return array_slice($this->_queue,0,$num); ???} ???/** ????* ?销毁队列 ????*/ ???public function destroy() { ???????$this->cache->remove($this->queuecachename); ???}}

PHP队列类

原文地址:https://www.cnblogs.com/lovellll/p/10200483.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved