91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在PHP中使用redis實現一個購物車單例類

發布時間:2021-02-15 18:36:48 來源:億速云 閱讀:244 作者:Leah 欄目:開發技術

如何在PHP中使用redis實現一個購物車單例類?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

具體如下:

<?php

class CartSingleton
{
  //定義一個靜態的私有變量
  static private $_instance=null;
  private $redis=null;
  //私有化的構造方法
  private final function __construct()
  {
    //實例化
    $this->redis=new Redis();
    $this->redis->connect('127.0.0.1',6379);
  }
  //私有化的克隆方法
  private function __clone()
  {
  }
  //公有的靜態方法
  static public function getInstance()
  {
    if(!(self::$_instance instanceof self)){
      self::$_instance = new CartSingleton();
    }
    return self::$_instance;
  }
  /**
   * 加入購物車
   *
   * @author YING
   * @param userId goodsName goodsId 用戶id 商品名稱 商品id
   * @return int
   */
   public function addCart($userId,$goodsName,$goodsId)
   {
     $hashKey="user_".$userId; //hash鍵名
     $key=$goodsId."_".$goodsName;//鍵名
     //加入
     return $this->redis->hIncrBy($hashKey,$key,1);
   }
  /**
   * 單刪
   *
   * @author YING
   * @param userId goodsId
   * @return
   */
  public function cartDelOne($userId,$goodsId)
  {
    $hashKey="user_".$userId; //hash鍵名
    $key=$goodsId;//鍵名
    //刪除
    return $this->redis->hDel($hashKey,$key);
  }
  /**
   * 清空購物車
   *
   * @author YING
   * @param userId
   * @return void
   */
  public function cartDelAll($userId)
  {
    $hashKey="user_".$userId; //hash鍵名
    //刪除
    return $this->redis->del($hashKey);
  }
  /**
   * 購物車列表
   *
   * @author YING
   * @param userId
   * @return void
   */
  public function cartList($userId)
  {
    $hashKey="user_".$userId; //hash鍵名
    //查詢數據
    return $this->redis->hGetAll($hashKey);
  }
}
//實例化類
$obj=CartSingleton::getInstance();

看完上述內容,你們掌握如何在PHP中使用redis實現一個購物車單例類的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锦屏县| 深州市| 郴州市| 合肥市| 寻甸| 南通市| 城口县| 潼关县| 兴和县| 阳曲县| 寻甸| 博白县| 高青县| 伊金霍洛旗| 呈贡县| 金堂县| 阜南县| 长春市| 揭西县| 敦煌市| 嘉禾县| 交口县| 廉江市| 华池县| 高邮市| 盐津县| 定日县| 苏尼特左旗| 郴州市| 天门市| 利津县| 漠河县| 南安市| 宽甸| 武川县| 清徐县| 唐海县| 东安县| 吉安县| 肇州县| 阜康市|