当前位置:首页 > PHP教程 > php应用 > 列表

PHP+redis实现的购物车单例类示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-06 21:14:21 浏览: 评论:0 

这篇文章主要介绍了PHP+redis实现的购物车单例类,涉及php连接、操作redis数据库及购物车功能相关定义与使用技巧,需要的朋友可以参考下。

本文实例讲述了PHP+redis实现的购物车单例类,分享给大家供大家参考,具体如下:

  1. <?php 
  2. /** 
  3.  * 购物车单例类 
  4.  * 
  5.  * @author YING 
  6.  * @param void 
  7.  * @return void 
  8.  */ 
  9. class CartSingleton 
  10.   //定义一个静态的私有变量 
  11.   static private $_instance=null; 
  12.   private $redis=null; 
  13.   //私有化的构造方法 
  14.   private final function __construct() 
  15.   { 
  16.     //实例化 
  17.     $this->redis=new Redis(); 
  18.     $this->redis->connect('127.0.0.1',6379); 
  19.   } 
  20.   //私有化的克隆方法 
  21.   private function __clone() 
  22.   { 
  23.   } 
  24.   //公有的静态方法 
  25.   static public function getInstance() 
  26.   { 
  27.     if(!(self::$_instance instanceof self)){ 
  28.       self::$_instance = new CartSingleton(); 
  29.     } 
  30.     return self::$_instance
  31.   } 
  32.   /** 
  33.    * 加入购物车 
  34.    * 
  35.    * @author YING 
  36.    * @param userId goodsName goodsId 用户id 商品名称 商品id 
  37.    * @return int 
  38.    */ 
  39.    public function addCart($userId,$goodsName,$goodsId
  40.    { 
  41.      $hashKey="user_".$userId//hash键名 
  42.      $key=$goodsId."_".$goodsName;//键名 
  43.      //加入 
  44.      return $this->redis->hIncrBy($hashKey,$key,1); 
  45.    } 
  46.   /** 
  47.    * 单删 
  48.    * 
  49.    * @author YING 
  50.    * @param userId goodsId 
  51.    * @return 
  52.    */ 
  53.   public function cartDelOne($userId,$goodsId
  54.   { 
  55.     $hashKey="user_".$userId//hash键名 
  56.     $key=$goodsId;//键名 
  57.     //删除 
  58.     return $this->redis->hDel($hashKey,$key); 
  59.   } 
  60.   /** 
  61.    * 清空购物车 
  62.    * 
  63.    * @author YING 
  64.    * @param userId 
  65.    * @return void 
  66.    */ 
  67.   public function cartDelAll($userId
  68.   { 
  69.     $hashKey="user_".$userId//hash键名 
  70.     //删除 
  71.     return $this->redis->del($hashKey); 
  72.   } 
  73.   /** 
  74.    * 购物车列表 
  75.    * 
  76.    * @author YING 
  77.    * @param userId 
  78.    * @return void 
  79.    */ 
  80.   public function cartList($userId
  81.   { 
  82.     $hashKey="user_".$userId//hash键名 
  83.     //查询数据 
  84.     return $this->redis->hGetAll($hashKey); 
  85.   } 
  86. //实例化类 
  87. $obj=CartSingleton::getInstance();

Tags: PHP+redis PHP购物车单例类

分享到: